Browse Source

Merge pull request #176 from ninthwalker/master

Add Now Showing to Supported Apps
pull/177/head
KodeStar 7 years ago
committed by GitHub
parent
commit
caab2e0952
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 11
      app/SupportedApps/NowShowing.php
  3. BIN
      storage/app/public/supportedapps/nowshowing.png

1
app/Item.php

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

11
app/SupportedApps/NowShowing.php

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

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Loading…
Cancel
Save