Add Deluge

This commit is contained in:
cheesemarathon
2018-02-15 15:03:41 +00:00
parent d37f4fd77b
commit 601a455e08
3 changed files with 13 additions and 0 deletions

View File

@@ -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,

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB