summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-10-25 18:53:05 +0200
committermsquare <msquare@notrademark.de>2019-06-12 10:24:02 +0200
commit6ed891fc0416e8025f929cf60a07b1020118b221 (patch)
tree17e6a0d312693838133cb8241320424b9c0fcd1e /config
parent2e51fbff9d8472a0e98af39aff52d30f0b67706b (diff)
Added logout via AuthController
Diffstat (limited to 'config')
-rw-r--r--config/routes.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/routes.php b/config/routes.php
index 6f61ec71..6cc0ce8b 100644
--- a/config/routes.php
+++ b/config/routes.php
@@ -11,6 +11,9 @@ $route->get('/', function () {
});
$route->get('/credits', 'CreditsController@index');
+// Authentication
+$route->get('/logout', 'AuthController@logout');
+
// Stats
$route->get('/metrics', 'Metrics\\Controller@metrics');
$route->get('/stats', 'Metrics\\Controller@stats');