commit
479412b190
4 changed files with 14 additions and 0 deletions
|
@ -27,6 +27,7 @@ class Item extends Model
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
'AirSonic' => \App\SupportedApps\AirSonic::class,
|
||||||
|
'Cardigann' => \App\SupportedApps\Cardigann::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/Cardigann.php
Normal file
12
app/SupportedApps/Cardigann.php
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
<?php namespace App\SupportedApps;
|
||||||
|
class Cardigann implements Contracts\Applications {
|
||||||
|
public function defaultColour()
|
||||||
|
{
|
||||||
|
return '#753';
|
||||||
|
}
|
||||||
|
public function icon()
|
||||||
|
{
|
||||||
|
return 'supportedapps/cardigann.png';
|
||||||
|
}
|
||||||
|
}
|
|
@ -42,6 +42,7 @@ Supported applications are recognized by the title of the application as entered
|
||||||
|
|
||||||
**Foundation**
|
**Foundation**
|
||||||
- AirSonic
|
- AirSonic
|
||||||
|
- Cardigann
|
||||||
- Deluge
|
- Deluge
|
||||||
- DokuWiki
|
- DokuWiki
|
||||||
- Duplicati
|
- Duplicati
|
||||||
|
|
BIN
storage/app/public/supportedapps/cardigann.png
Normal file
BIN
storage/app/public/supportedapps/cardigann.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3 KiB |
Loading…
Reference in a new issue