Browse Source
Merge pull request #2 from ullbergm/app-LibreNMS
Added LibreNMS support.
remotes/ullbergm/master
ullbergm
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
14 additions and
0 deletions
-
app/Item.php
-
app/SupportedApps/LibreNMS.php
-
readme.md
-
BIN
storage/app/public/supportedapps/librenms.png
|
@ -41,6 +41,7 @@ class Item extends Model |
|
|
'Jackett' => \App\SupportedApps\Jackett::class, |
|
|
'Jackett' => \App\SupportedApps\Jackett::class, |
|
|
'Jdownloader' => \App\SupportedApps\Jdownloader::class, |
|
|
'Jdownloader' => \App\SupportedApps\Jdownloader::class, |
|
|
'Krusader' => \App\SupportedApps\Krusader::class, |
|
|
'Krusader' => \App\SupportedApps\Krusader::class, |
|
|
|
|
|
'LibreNMS' => \App\SupportedApps\LibreNMS::class, |
|
|
'LazyLibrarian' => \App\SupportedApps\LazyLibrarian::class, |
|
|
'LazyLibrarian' => \App\SupportedApps\LazyLibrarian::class, |
|
|
'Lidarr' => \App\SupportedApps\Lidarr::class, |
|
|
'Lidarr' => \App\SupportedApps\Lidarr::class, |
|
|
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class, |
|
|
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class, |
|
|
|
@ -0,0 +1,12 @@ |
|
|
|
|
|
<?php namespace App\SupportedApps; |
|
|
|
|
|
|
|
|
|
|
|
class LibreNMS implements Contracts\Applications { |
|
|
|
|
|
public function defaultColour() |
|
|
|
|
|
{ |
|
|
|
|
|
return '#e77'; |
|
|
|
|
|
} |
|
|
|
|
|
public function icon() |
|
|
|
|
|
{ |
|
|
|
|
|
return 'supportedapps/librenms.png'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
@ -52,6 +52,7 @@ Supported applications are recognized by the title of the application as entered |
|
|
- Graylog |
|
|
- Graylog |
|
|
- Jdownloader |
|
|
- Jdownloader |
|
|
- Krusader |
|
|
- Krusader |
|
|
|
|
|
- LibreNMS |
|
|
- LazyLibrarian |
|
|
- LazyLibrarian |
|
|
- Lidarr |
|
|
- Lidarr |
|
|
- McMyAdmin |
|
|
- McMyAdmin |
|
|
Width:
|
Height:
|
Size: 28 KiB
|