feat(SupportedApps): added Deluge Application to Foundation Apps
Closes #63
This commit is contained in:
parent
2f193e0c83
commit
b6d5e73708
4 changed files with 14 additions and 0 deletions
|
@ -26,6 +26,7 @@ class Item extends Model
|
|||
public static function supportedList()
|
||||
{
|
||||
return [
|
||||
'Deluge' => \App\SupportedApps\Deluge::class,
|
||||
'Duplicati' => \App\SupportedApps\Duplicati::class,
|
||||
'Emby' => \App\SupportedApps\Emby::class,
|
||||
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
|
||||
|
|
12
app/SupportedApps/Deluge.php
Normal file
12
app/SupportedApps/Deluge.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Deluge implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#98b0cc';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/deluge.png';
|
||||
}
|
||||
}
|
|
@ -21,6 +21,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
- Sabnzbd
|
||||
|
||||
**Foundation**
|
||||
- Deluge
|
||||
- Duplicati
|
||||
- Emby
|
||||
- Jdownloader
|
||||
|
|
BIN
storage/app/public/supportedapps/deluge.png
Normal file
BIN
storage/app/public/supportedapps/deluge.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
Loading…
Reference in a new issue