commit
4d37135bdf
4 changed files with 13 additions and 0 deletions
|
@ -36,6 +36,7 @@ class Item extends Model
|
|||
'Duplicati' => \App\SupportedApps\Duplicati::class,
|
||||
'Emby' => \App\SupportedApps\Emby::class,
|
||||
'Flood' => \App\SupportedApps\Flood::class,
|
||||
'FreshRSS' => \App\SupportedApps\FreshRSS::class,
|
||||
'Gitea' => \App\SupportedApps\Gitea::class,
|
||||
'Glances' => \App\SupportedApps\Glances::class,
|
||||
'Grafana' => \App\SupportedApps\Grafana::class,
|
||||
|
|
11
app/SupportedApps/FreshRSS.php
Normal file
11
app/SupportedApps/FreshRSS.php
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
class FreshRSS implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#003B73';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/freshrss.png';
|
||||
}
|
||||
}
|
|
@ -50,6 +50,7 @@ Supported applications are recognized by the title of the application as entered
|
|||
- DokuWiki
|
||||
- Duplicati
|
||||
- Emby
|
||||
- FreshRSS
|
||||
- Gitea
|
||||
- Grafana
|
||||
- Graylog
|
||||
|
|
BIN
storage/app/public/supportedapps/freshrss.png
Normal file
BIN
storage/app/public/supportedapps/freshrss.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
Loading…
Reference in a new issue