feat(SupportedApps): added NZBHydra Application to Foundation Apps
Closes #66
This commit is contained in:
parent
b6d5e73708
commit
26435d85e8
4 changed files with 14 additions and 0 deletions
|
@ -38,6 +38,7 @@ class Item extends Model
|
|||
'NZBGet' => \App\SupportedApps\Nzbget::class,
|
||||
'Netdata' => \App\SupportedApps\Netdata::class,
|
||||
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
|
||||
'Nzbhydra' => \App\SupportedApps\Nzbhydra::class,
|
||||
'OPNSense' => \App\SupportedApps\Opnsense::class,
|
||||
'Openhab' => \App\SupportedApps\Openhab::class,
|
||||
'Pihole' => \App\SupportedApps\Pihole::class,
|
||||
|
|
12
app/SupportedApps/Nzbhydra.php
Normal file
12
app/SupportedApps/Nzbhydra.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Nzbhydra implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#53644d';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/nzbhydra.png';
|
||||
}
|
||||
}
|
|
@ -28,6 +28,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
|||
- Mcmyadmin
|
||||
- Medusa
|
||||
- NZBGet
|
||||
- NZBHydra
|
||||
- Netdata
|
||||
- Nextcloud
|
||||
- Openhab
|
||||
|
|
BIN
storage/app/public/supportedapps/nzbhydra.png
Normal file
BIN
storage/app/public/supportedapps/nzbhydra.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
Loading…
Reference in a new issue