Browse Source

Add Calibre Web to the Foundation apps

pull/280/head
Manfred Martin 7 years ago
parent
commit
a832b28708
  1. 3
      app/Item.php
  2. 14
      app/SupportedApps/CalibreWeb.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/calibreweb.png

3
app/Item.php

@ -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

@ -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';
}
}

1
readme.md

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Loading…
Cancel
Save