feat: added Nextcloud to supported Apps

This commit is contained in:
Futos 2018-02-09 21:42:47 +01:00
parent 076d51c6eb
commit 83263c0b1b
3 changed files with 13 additions and 0 deletions

View file

@ -34,6 +34,7 @@ class Item extends Model
'Plex' => \App\SupportedApps\Plex::class,
'Portainer' => \App\SupportedApps\Portainer::class,
'UniFi' => \App\SupportedApps\Unifi::class,
'Nextcloud' => \App\SupportedApps\Nextcloud::class,
'Sabnzbd' => \App\SupportedApps\Sabnzbd::class,
];
}

View file

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB