Browse Source

feat: added Traefik as a supported App, also sorted lines alphabetically

pull/36/head
Futos 7 years ago
parent
commit
995eb6b557
  1. 7
      app/Item.php
  2. 12
      app/SupportedApps/Traefik.php
  3. 5
      readme.md
  4. BIN
      storage/app/public/supportedapps/traefik.png

7
app/Item.php

@ -29,14 +29,15 @@ class Item extends Model
'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class,
'NZBGet' => \App\SupportedApps\Nzbget::class,
'pFsense' => \App\SupportedApps\Pfsense::class,
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Pihole' => \App\SupportedApps\Pihole::class,
'Plex' => \App\SupportedApps\Plex::class,
'Plexpy' => \App\SupportedApps\Plexpy::class,
'Portainer' => \App\SupportedApps\Portainer::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
'Traefik' => \App\SupportedApps\Traefik::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'pFsense' => \App\SupportedApps\Pfsense::class,
];
}
public static function supportedOptions()

12
app/SupportedApps/Traefik.php

@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;
class Traefik implements Contracts\Applications {
public function defaultColour()
{
return '#427d8c';
}
public function icon()
{
return 'supportedapps/traefik.png';
}
}

5
readme.md

@ -24,13 +24,14 @@ You can use the app to link to any site or application, but "Supported" apps wil
- Emby
- NZBGet
- Nextcloud
- pFsense
- Pihole
- Plex
- Plexpy
- Portainer
- UniFi
- Sabnzbd
- Traefik
- UniFi
- pFsense
## Installing
Apart from the Laravel dependencies, namely PHP >= 7.0.0, OpenSSL PHP Extension, PDO PHP Extension, Mbstring PHP Extension, Tokenizer PHP Extension and XML PHP Extension, the only other thing Heimdall needs is sqlite support.

BIN
storage/app/public/supportedapps/traefik.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

Loading…
Cancel
Save