Browse Source
Merge pull request #38 from Futos/plexrequests
feat: added Plexrequests as a supported App - Closes #29
pull/39/head^2
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/Plexrequests.php
-
readme.md
-
BIN
storage/app/public/supportedapps/plexrequests.png
|
@ -33,6 +33,7 @@ class Item extends Model |
|
|
'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, |
|
|
'Plexpy' => \App\SupportedApps\Plexpy::class, |
|
|
|
|
|
'Plexrequests' => \App\SupportedApps\Plexrequests::class, |
|
|
'Portainer' => \App\SupportedApps\Portainer::class, |
|
|
'Portainer' => \App\SupportedApps\Portainer::class, |
|
|
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class, |
|
|
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class, |
|
|
'Traefik' => \App\SupportedApps\Traefik::class, |
|
|
'Traefik' => \App\SupportedApps\Traefik::class, |
|
|
|
@ -0,0 +1,12 @@ |
|
|
|
|
|
<?php namespace App\SupportedApps; |
|
|
|
|
|
|
|
|
|
|
|
class Plexrequests implements Contracts\Applications { |
|
|
|
|
|
public function defaultColour() |
|
|
|
|
|
{ |
|
|
|
|
|
return '#845c2c'; |
|
|
|
|
|
} |
|
|
|
|
|
public function icon() |
|
|
|
|
|
{ |
|
|
|
|
|
return 'supportedapps/plexrequests.png'; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
@ -27,6 +27,7 @@ You can use the app to link to any site or application, but "Supported" apps wil |
|
|
- Pihole |
|
|
- Pihole |
|
|
- Plex |
|
|
- Plex |
|
|
- Plexpy |
|
|
- Plexpy |
|
|
|
|
|
- Plexrequests |
|
|
- Portainer |
|
|
- Portainer |
|
|
- Sabnzbd |
|
|
- Sabnzbd |
|
|
- Traefik |
|
|
- Traefik |
|
|
Width:
|
Height:
|
Size: 4.9 KiB
|