Skip to content

Commit

Permalink
Merge pull request #84 from cheesemarathon/master
Browse files Browse the repository at this point in the history
feat: added ruTorrent to supported Apps - Closes #35
  • Loading branch information
KodeStar committed Feb 15, 2018
2 parents c121341 + c395cb2 commit d37f4fd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/Item.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ public static function supportedList()
'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,
Expand Down
12 changes: 12 additions & 0 deletions app/SupportedApps/ruTorrent.php
Original file line number Diff line number Diff line change
@@ -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 added storage/app/public/supportedapps/rutorrent.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d37f4fd

Please sign in to comment.