From 6ed891fc0416e8025f929cf60a07b1020118b221 Mon Sep 17 00:00:00 2001 From: Igor Scheller Date: Thu, 25 Oct 2018 18:53:05 +0200 Subject: Added logout via AuthController --- config/routes.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'config/routes.php') 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'); -- cgit v1.2.3-54-g00ecf