diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-23 13:15:59 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-23 13:15:59 -0400 |
commit | 8eb739bb910fb91737c6ce65f244eb9a3ac8f35c (patch) | |
tree | db615be44d945a8dc1880a1238a381ec6534dfa2 /app/common.php | |
parent | 297c11e48e1cf18e5773a7463721d862dfd6063d (diff) |
Add Gitlab authentication
Diffstat (limited to 'app/common.php')
-rw-r--r-- | app/common.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/common.php b/app/common.php index b8f5ccd2..8c1074d6 100644 --- a/app/common.php +++ b/app/common.php @@ -146,6 +146,7 @@ if (ENABLE_URL_REWRITE) { // Auth routes $container['router']->addRoute('oauth/google', 'oauth', 'google'); $container['router']->addRoute('oauth/github', 'oauth', 'github'); + $container['router']->addRoute('oauth/gitlab', 'oauth', 'gitlab'); $container['router']->addRoute('login', 'auth', 'login'); $container['router']->addRoute('logout', 'auth', 'logout'); } |