add grafana app php

This commit is contained in:
Liam B. Akkerman 2018-03-24 21:23:15 -07:00 committed by GitHub
parent 44ce0bbffd
commit 2d38652034
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,12 @@
<?php namespace App\SupportedApps;
class Grafana implements Contracts\Applications {
public function defaultColour()
{
return '#a56e4d';
}
public function icon()
{
return 'supportedapps/grafana.png'; #icon does not exist yet
}
}