Browse Source

Merge pull request #88 from cheesemarathon/master

feat: added Deluge to supported Apps - Closes #63
pull/90/head^2
KodeStar 7 years ago
committed by GitHub
parent
commit
ebc1046ba6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/Deluge.php
  3. BIN
      storage/app/public/supportedapps/deluge.png

1
app/Item.php

@ -26,6 +26,7 @@ class Item extends Model
public static function supportedList() public static function supportedList()
{ {
return [ return [
'Deluge' => \App\SupportedApps\Deluge::class,
'Duplicati' => \App\SupportedApps\Duplicati::class, 'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class, 'Emby' => \App\SupportedApps\Emby::class,
'Home Assistant' => \App\SupportedApps\HomeAssistant::class, 'Home Assistant' => \App\SupportedApps\HomeAssistant::class,

12
app/SupportedApps/Deluge.php

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

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Loading…
Cancel
Save