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

This commit is contained in:
Futos 2018-02-11 13:12:42 +01:00
parent 7f0a33e36a
commit 995eb6b557
4 changed files with 19 additions and 5 deletions

View file

@ -29,14 +29,15 @@ class Item extends Model
'Duplicati' => \App\SupportedApps\Duplicati::class, 'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class, 'Emby' => \App\SupportedApps\Emby::class,
'NZBGet' => \App\SupportedApps\Nzbget::class, 'NZBGet' => \App\SupportedApps\Nzbget::class,
'pFsense' => \App\SupportedApps\Pfsense::class, 'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Pihole' => \App\SupportedApps\Pihole::class, 'Pihole' => \App\SupportedApps\Pihole::class,
'Plex' => \App\SupportedApps\Plex::class, 'Plex' => \App\SupportedApps\Plex::class,
'Plexpy' => \App\SupportedApps\Plexpy::class, 'Plexpy' => \App\SupportedApps\Plexpy::class,
'Portainer' => \App\SupportedApps\Portainer::class, 'Portainer' => \App\SupportedApps\Portainer::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Sabnzbd' => \App\SupportedApps\Sabnzbd::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() public static function supportedOptions()

View file

@ -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';
}
}

View file

@ -24,13 +24,14 @@ You can use the app to link to any site or application, but "Supported" apps wil
- Emby - Emby
- NZBGet - NZBGet
- Nextcloud - Nextcloud
- pFsense
- Pihole - Pihole
- Plex - Plex
- Plexpy - Plexpy
- Portainer - Portainer
- UniFi
- Sabnzbd - Sabnzbd
- Traefik
- UniFi
- pFsense
## Installing ## 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. 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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB