Browse Source

Merge pull request #22 from Futos/nextcloud

feat: added Nextcloud to supported Apps
pull/36/head
KodeStar 7 years ago
committed by GitHub
parent
commit
3b817c20fa
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/Item.php
  2. 12
      app/SupportedApps/Nextcloud.php
  3. 1
      readme.md
  4. BIN
      storage/app/public/supportedapps/nextcloud.png

1
app/Item.php

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

12
app/SupportedApps/Nextcloud.php

@ -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';
}
}

1
readme.md

@ -23,6 +23,7 @@ You can use the app to link to any site or application, but "Supported" apps wil
- Duplicati - Duplicati
- Emby - Emby
- NZBGet - NZBGet
- Nextcloud
- pFsense - pFsense
- Pihole - Pihole
- Plex - Plex

BIN
storage/app/public/supportedapps/nextcloud.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Loading…
Cancel
Save