Adds jackett, radarr, sonarr and home asssistant as foundation apps
This commit is contained in:
cheesemarathon
2018-02-13 15:00:59 +00:00
parent 5be3662b35
commit 260a88623e
9 changed files with 52 additions and 0 deletions

View File

@@ -42,6 +42,10 @@ class Item extends Model
'Traefik' => \App\SupportedApps\Traefik::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'pFsense' => \App\SupportedApps\Pfsense::class,
'Sonarr' => \App\SupportedApps\Sonarr::class,
'Radarr' => \App\SupportedApps\Radarr::class,
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
'Jackett' => \App\SupportedApps\Jackett::class,
];
}
public static function supportedOptions()

View File

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

View File

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

View File

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

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB