commit
443f631bac
4 changed files with 14 additions and 0 deletions
|
@ -26,6 +26,7 @@ class Item extends Model
|
||||||
public static function supportedList()
|
public static function supportedList()
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
||||||
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
'CouchPotato' => \App\SupportedApps\CouchPotato::class,
|
||||||
'Deluge' => \App\SupportedApps\Deluge::class,
|
'Deluge' => \App\SupportedApps\Deluge::class,
|
||||||
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
|
||||||
|
|
12
app/SupportedApps/AirSonic.php
Normal file
12
app/SupportedApps/AirSonic.php
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
<?php namespace App\SupportedApps;
|
||||||
|
class AirSonic implements Contracts\Applications {
|
||||||
|
public function defaultColour()
|
||||||
|
{
|
||||||
|
return '#08F';
|
||||||
|
}
|
||||||
|
public function icon()
|
||||||
|
{
|
||||||
|
return 'supportedapps/airsonic.png';
|
||||||
|
}
|
||||||
|
}
|
|
@ -39,6 +39,7 @@ You can use the app to link to any site or application, but Foundation apps will
|
||||||
- Transmission
|
- Transmission
|
||||||
|
|
||||||
**Foundation**
|
**Foundation**
|
||||||
|
- AirSonic
|
||||||
- Deluge
|
- Deluge
|
||||||
- DokuWiki
|
- DokuWiki
|
||||||
- Duplicati
|
- Duplicati
|
||||||
|
|
BIN
storage/app/public/supportedapps/airsonic.png
Normal file
BIN
storage/app/public/supportedapps/airsonic.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.9 KiB |
Loading…
Reference in a new issue