feat: added Plexpy to supported Apps
This commit is contained in:
parent
18e1d962b8
commit
11177b73a5
4 changed files with 14 additions and 0 deletions
|
@ -32,6 +32,7 @@ class Item extends Model
|
|||
'pFsense' => \App\SupportedApps\Pfsense::class,
|
||||
'Pihole' => \App\SupportedApps\Pihole::class,
|
||||
'Plex' => \App\SupportedApps\Plex::class,
|
||||
'Plexpy' => \App\SupportedApps\Plexpy::class,
|
||||
'Portainer' => \App\SupportedApps\Portainer::class,
|
||||
'UniFi' => \App\SupportedApps\Unifi::class,
|
||||
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
|
||||
|
|
12
app/SupportedApps/Plexpy.php
Normal file
12
app/SupportedApps/Plexpy.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php namespace App\SupportedApps;
|
||||
|
||||
class Plexpy implements Contracts\Applications {
|
||||
public function defaultColour()
|
||||
{
|
||||
return '#e6b453';
|
||||
}
|
||||
public function icon()
|
||||
{
|
||||
return 'supportedapps/plexpy.png';
|
||||
}
|
||||
}
|
|
@ -26,6 +26,7 @@ You can use the app to link to any site or application, but "Supported" apps wil
|
|||
- pFsense
|
||||
- Pihole
|
||||
- Plex
|
||||
- Plexpy
|
||||
- Portainer
|
||||
- UniFi
|
||||
- Sabnzbd
|
||||
|
|
BIN
storage/app/public/supportedapps/plexpy.png
Normal file
BIN
storage/app/public/supportedapps/plexpy.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 26 KiB |
Loading…
Reference in a new issue