Browse Source

Merge pull request #194 from ullbergm/app-LibreNMS

Foundation App: LibreNMS
pull/203/head
KodeStar 6 years ago
committed by GitHub
parent
commit
38c350b020
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/Item.php
  2. 12
      app/SupportedApps/LazyLibrarian.php
  3. 12
      app/SupportedApps/LibreNMS.php
  4. 2
      readme.md
  5. BIN
      storage/app/public/supportedapps/lazylibrarian.png
  6. BIN
      storage/app/public/supportedapps/librenms.png

2
app/Item.php

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

12
app/SupportedApps/LazyLibrarian.php

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

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

2
readme.md

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

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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 38 KiB

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB

Loading…
Cancel
Save