Add Lidarr
Adds Lidarr as a foundation app
This commit is contained in:
parent
a664c9abe9
commit
e2e1471dfa
3 changed files with 13 additions and 0 deletions
|
@ -31,6 +31,7 @@ class Item extends Model
|
|||
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
|
||||
'Jackett' => \App\SupportedApps\Jackett::class,
|
||||
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
||||
'Lidarr' => \App\SupportedApps\Lidarr::class,
|
||||
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
||||
|
|
12
app/SupportedApps/Lidarr.php
Normal file
12
app/SupportedApps/Lidarr.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Lidarr implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#040';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/lidarr.png';
|
||||
}
|
||||
}
|
BIN
storage/app/public/supportedapps/lidarr.png
Normal file
BIN
storage/app/public/supportedapps/lidarr.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 54 KiB |
Loading…
Add table
Reference in a new issue