mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-02-21 20:20:34 +09:00
Added LibreNMS support.
This commit is contained in:
@@ -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
Normal file
12
app/SupportedApps/LibreNMS.php
Normal file
@@ -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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user