Merge pull request #84 from cheesemarathon/master

feat: added ruTorrent to supported Apps - Closes #35
This commit is contained in:
KodeStar 2018-02-15 14:07:37 +00:00 committed by GitHub
commit d37f4fd77b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 0 deletions

View file

@ -46,6 +46,7 @@ class Item extends Model
'Portainer' => \App\SupportedApps\Portainer::class,
'Proxmox' => \App\SupportedApps\Proxmox::class,
'Radarr' => \App\SupportedApps\Radarr::class,
'ruTorrent' => \App\SupportedApps\ruTorrent::class,
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
'Sonarr' => \App\SupportedApps\Sonarr::class,
'Traefik' => \App\SupportedApps\Traefik::class,

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB