Browse Source

Added LibreNMS support.

pull/194/head
Magnus Ullberg 7 years ago
parent
commit
847b34cdcb
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/LibreNMS.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/librenms.png

1
app/Item.php

@ -41,6 +41,7 @@ class Item extends Model
'Jackett' => \App\SupportedApps\Jackett::class,
'Jdownloader' => \App\SupportedApps\Jdownloader::class,
'Krusader' => \App\SupportedApps\Krusader::class,
'LibreNMS' => \App\SupportedApps\LibreNMS::class,
'Lidarr' => \App\SupportedApps\Lidarr::class,
'Mcmyadmin' => \App\SupportedApps\Mcmyadmin::class,
'Medusa' => \App\SupportedApps\Medusa::class,

12
app/SupportedApps/LibreNMS.php

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

1
readme.md

@ -52,6 +52,7 @@ Supported applications are recognized by the title of the application as entered
- Graylog
- Jdownloader
- Krusader
- LibreNMS
- Lidarr
- McMyAdmin
- Medusa

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Loading…
Cancel
Save