Browse Source

Merge pull request #95 from cheesemarathon/master

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

1
app/Item.php

@ -29,6 +29,7 @@ class Item extends Model
'Deluge' => \App\SupportedApps\Deluge::class,
'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class,
'Graylog' => \App\SupportedApps\Graylog::class,
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
'Jackett' => \App\SupportedApps\Jackett::class,
'Jdownloader' => \App\SupportedApps\Jdownloader::class,

12
app/SupportedApps/Graylog.php

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

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Loading…
Cancel
Save