Browse Source

feat(SupportedApps): Added DokuWiki to Foundation Apps

Closes #104
pull/118/head
Futos 7 years ago
parent
commit
a05b7a43bd
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/Dokuwiki.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/dokuwiki.png

1
app/Item.php

@ -27,6 +27,7 @@ class Item extends Model
{
return [
'Deluge' => \App\SupportedApps\Deluge::class,
'Dokuwiki' => \App\SupportedApps\Dokuwiki::class,
'Duplicati' => \App\SupportedApps\Duplicati::class,
'Emby' => \App\SupportedApps\Emby::class,
'Gitea' => \App\SupportedApps\Gitea::class,

12
app/SupportedApps/Dokuwiki.php

@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;
class Dokuwiki implements Contracts\Applications {
public function defaultColour()
{
return '#9d7056';
}
public function icon()
{
return 'supportedapps/dokuwiki.png';
}
}

1
readme.md

@ -34,6 +34,7 @@ You can use the app to link to any site or application, but Foundation apps will
**Foundation**
- Deluge
- DokuWiki
- Duplicati
- Emby
- Gitea

BIN
storage/app/public/supportedapps/dokuwiki.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Loading…
Cancel
Save