committed by
GitHub
8 changed files with 48 additions and 6 deletions
@ -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'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class Gitea implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#585e52'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/gitea.png'; |
|||
} |
|||
} |
@ -0,0 +1,12 @@ |
|||
<?php namespace App\SupportedApps; |
|||
|
|||
class Sickrage implements Contracts\Applications { |
|||
public function defaultColour() |
|||
{ |
|||
return '#6185a6'; |
|||
} |
|||
public function icon() |
|||
{ |
|||
return 'supportedapps/sickrage.png'; |
|||
} |
|||
} |
After Width: | Height: | Size: 24 KiB |
After Width: | Height: | Size: 18 KiB |
After Width: | Height: | Size: 46 KiB |
Loading…
Reference in new issue