Added credits

This commit is contained in:
Graham Campbell
2016-05-29 18:14:40 +01:00
parent ab0ed775e1
commit c03f01ca44
10 changed files with 217 additions and 21 deletions
+5
View File
@@ -11,6 +11,7 @@
namespace CachetHQ\Cachet\Http\Routes;
use CachetHQ\Cachet\Integrations\Credits;
use Illuminate\Contracts\Routing\Registrar;
/**
@@ -211,6 +212,10 @@ class DashboardRoutes
'as' => 'customization',
'uses' => 'SettingsController@showCustomizationView',
]);
$router->get('credits', [
'as' => 'credits',
'uses' => 'SettingsController@showCreditsView',
]);
$router->post('/', 'SettingsController@postSettings');
});