Add Graylog
This commit is contained in:
parent
b1660c92cc
commit
59910ecadc
3 changed files with 13 additions and 0 deletions
|
@ -29,6 +29,7 @@ class Item extends Model
|
||||||
'Deluge' => \App\SupportedApps\Deluge::class,
|
'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,
|
||||||
|
'Graylog' => \App\SupportedApps\Graylog::class,
|
||||||
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
|
'Home Assistant' => \App\SupportedApps\HomeAssistant::class,
|
||||||
'Jackett' => \App\SupportedApps\Jackett::class,
|
'Jackett' => \App\SupportedApps\Jackett::class,
|
||||||
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
|
||||||
|
|
12
app/SupportedApps/Graylog.php
Normal file
12
app/SupportedApps/Graylog.php
Normal file
|
@ -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
Normal file
BIN
storage/app/public/supportedapps/graylog.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.5 KiB |
Loading…
Reference in a new issue