Merge pull request #231 from CHBMB/tvheadend
Add TVheadend to foundation apps
This commit is contained in:
commit
b6112501e2
4 changed files with 16 additions and 0 deletions
|
@ -76,6 +76,7 @@ class Item extends Model
|
|||
'Transmission' => \App\SupportedApps\Transmission::class,
|
||||
'Traefik' => \App\SupportedApps\Traefik::class,
|
||||
'tt-rss' => \App\SupportedApps\Ttrss::class,
|
||||
'TVheadend' => \App\SupportedApps\TVheadend::class,
|
||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||
'unRAID' => \App\SupportedApps\Unraid::class,
|
||||
'pfSense' => \App\SupportedApps\Pfsense::class,
|
||||
|
|
14
app/SupportedApps/TVheadend.php
Normal file
14
app/SupportedApps/TVheadend.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class TVheadend implements Contracts\Applications {
|
||||
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#006080';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/tvheadend.png';
|
||||
}
|
||||
|
||||
}
|
|
@ -75,6 +75,7 @@ Supported applications are recognized by the title of the application as entered
|
|||
- SickRage
|
||||
- Sonarr
|
||||
- TT-RSS
|
||||
- TVheadend
|
||||
- UniFI
|
||||
- unRAID
|
||||
- pfSense
|
||||
|
|
BIN
storage/app/public/supportedapps/tvheadend.png
Normal file
BIN
storage/app/public/supportedapps/tvheadend.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Loading…
Reference in a new issue