Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added Traefik as a supported App, also sorted lines alphabetically closes #28 #36

Merged
merged 1 commit into from
Feb 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions app/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,15 @@ public static function supportedList()
'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()
Expand Down
12 changes: 12 additions & 0 deletions app/SupportedApps/Traefik.php
Original file line number Diff line number Diff line change
@@ -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 changes: 3 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Binary file added storage/app/public/supportedapps/traefik.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.