Add Calibre Web to the Foundation apps

This commit is contained in:
Manfred Martin 2018-11-04 13:40:38 +01:00
parent 50d6dc7b71
commit a832b28708
4 changed files with 17 additions and 1 deletions

View file

@ -44,6 +44,7 @@ class Item extends Model
'Bitwarden' => \App\SupportedApps\Bitwarden::class,
'Booksonic' => \App\SupportedApps\Booksonic::class,
'BookStack' => \App\SupportedApps\BookStack::class,
'CalibreWeb' => \App\SupportedApps\CalibreWeb::class,
'Deluge' => \App\SupportedApps\Deluge::class,
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
'Duplicati' => \App\SupportedApps\Duplicati::class,
@ -238,7 +239,7 @@ class Item extends Model
public function user()
{
return $this->belongsTo('App\User');
}
}
}

View file

@ -0,0 +1,14 @@
<?php namespace App\SupportedApps;
class CalibreWeb implements Contracts\Applications {
public function defaultColour()
{
return '#456082';
}
public function icon()
{
return 'supportedapps/calibreweb.png';
}
}

View file

@ -48,6 +48,7 @@ Supported applications are recognized by the title of the application as entered
- Bitwarden
- Booksonic
- BookStack
- CalibreWeb
- Cardigann
- DokuWiki
- Duplicati

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB