KodeStar
7 years ago
committed by
GitHub
10 changed files with 62 additions and 5 deletions
@ -0,0 +1,12 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Medusa implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#4b5e55'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/medusa.png'; |
||||
|
} |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Nzbhydra implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#53644d'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/nzbhydra.png'; |
||||
|
} |
||||
|
} |
@ -0,0 +1,12 @@ |
|||||
|
<?php namespace App\SupportedApps; |
||||
|
|
||||
|
class Ttrss implements Contracts\Applications { |
||||
|
public function defaultColour() |
||||
|
{ |
||||
|
return '#9d704c'; |
||||
|
} |
||||
|
public function icon() |
||||
|
{ |
||||
|
return 'supportedapps/tt-rss.png'; |
||||
|
} |
||||
|
} |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 4.6 KiB |
After Width: | Height: | Size: 14 KiB |
After Width: | Height: | Size: 19 KiB |
Loading…
Reference in new issue