Merge pull request #176 from ninthwalker/master

Add Now Showing to Supported Apps
This commit is contained in:
KodeStar 2018-05-01 21:55:16 +01:00 committed by GitHub
commit caab2e0952
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 0 deletions

View file

@ -47,6 +47,7 @@ class Item extends Model
'NZBGet' => \App\SupportedApps\Nzbget::class, 'NZBGet' => \App\SupportedApps\Nzbget::class,
'Netdata' => \App\SupportedApps\Netdata::class, 'Netdata' => \App\SupportedApps\Netdata::class,
'Nextcloud' => \App\SupportedApps\Nextcloud::class, 'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Now Showing' => \App\SupportedApps\NowShowing::class,
'Nzbhydra' => \App\SupportedApps\Nzbhydra::class, 'Nzbhydra' => \App\SupportedApps\Nzbhydra::class,
'OPNSense' => \App\SupportedApps\Opnsense::class, 'OPNSense' => \App\SupportedApps\Opnsense::class,
'Ombi' => \App\SupportedApps\Ombi::class, 'Ombi' => \App\SupportedApps\Ombi::class,

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB