Browse Source
Merge pull request #23 from Futos/plexpy
feat: added Plexpy to supported Apps
pull/36/head
KodeStar
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
14 additions and
0 deletions
-
app/Item.php
-
app/SupportedApps/Plexpy.php
-
readme.md
-
BIN
storage/app/public/supportedapps/plexpy.png
|
@ -32,6 +32,7 @@ class Item extends Model |
|
|
'pFsense' => \App\SupportedApps\Pfsense::class, |
|
|
'pFsense' => \App\SupportedApps\Pfsense::class, |
|
|
'Pihole' => \App\SupportedApps\Pihole::class, |
|
|
'Pihole' => \App\SupportedApps\Pihole::class, |
|
|
'Plex' => \App\SupportedApps\Plex::class, |
|
|
'Plex' => \App\SupportedApps\Plex::class, |
|
|
|
|
|
'Plexpy' => \App\SupportedApps\Plexpy::class, |
|
|
'Portainer' => \App\SupportedApps\Portainer::class, |
|
|
'Portainer' => \App\SupportedApps\Portainer::class, |
|
|
'UniFi' => \App\SupportedApps\Unifi::class, |
|
|
'UniFi' => \App\SupportedApps\Unifi::class, |
|
|
'Nextcloud' => \App\SupportedApps\Nextcloud::class, |
|
|
'Nextcloud' => \App\SupportedApps\Nextcloud::class, |
|
|
|
@ -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'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
@ -27,6 +27,7 @@ You can use the app to link to any site or application, but "Supported" apps wil |
|
|
- pFsense |
|
|
- pFsense |
|
|
- Pihole |
|
|
- Pihole |
|
|
- Plex |
|
|
- Plex |
|
|
|
|
|
- Plexpy |
|
|
- Portainer |
|
|
- Portainer |
|
|
- UniFi |
|
|
- UniFi |
|
|
- Sabnzbd |
|
|
- Sabnzbd |
|
|
Width:
|
Height:
|
Size: 26 KiB
|