Merge pull request #84 from cheesemarathon/master
feat: added ruTorrent to supported Apps - Closes #35
This commit is contained in:
commit
d37f4fd77b
3 changed files with 13 additions and 0 deletions
|
@ -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,
|
||||
|
|
12
app/SupportedApps/ruTorrent.php
Normal file
12
app/SupportedApps/ruTorrent.php
Normal 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';
|
||||
}
|
||||
}
|
BIN
storage/app/public/supportedapps/rutorrent.png
Normal file
BIN
storage/app/public/supportedapps/rutorrent.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Loading…
Reference in a new issue