Add Calibre Web to the Foundation apps
This commit is contained in:
parent
50d6dc7b71
commit
a832b28708
4 changed files with 17 additions and 1 deletions
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
14
app/SupportedApps/CalibreWeb.php
Normal file
14
app/SupportedApps/CalibreWeb.php
Normal 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';
|
||||
}
|
||||
|
||||
}
|
|
@ -48,6 +48,7 @@ Supported applications are recognized by the title of the application as entered
|
|||
- Bitwarden
|
||||
- Booksonic
|
||||
- BookStack
|
||||
- CalibreWeb
|
||||
- Cardigann
|
||||
- DokuWiki
|
||||
- Duplicati
|
||||
|
|
BIN
storage/app/public/supportedapps/calibreweb.png
Normal file
BIN
storage/app/public/supportedapps/calibreweb.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2 KiB |
Loading…
Add table
Reference in a new issue