summaryrefslogtreecommitdiff
path: root/app/Model/Acl.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-07-16 20:35:56 -0400
committerFrederic Guillot <fred@kanboard.net>2015-07-16 20:35:56 -0400
commitede1f1d9b0c06a05845f4125d59c97c29b6d9842 (patch)
tree2fc9f21c586501d43440dace17e71bfb40618bfc /app/Model/Acl.php
parent12036aa21f4308aca4d816864b357f9627a0f437 (diff)
Refactoring of Github authentication (oauth url change)
Diffstat (limited to 'app/Model/Acl.php')
-rw-r--r--app/Model/Acl.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/Model/Acl.php b/app/Model/Acl.php
index 579b5d90..dfdc82d2 100644
--- a/app/Model/Acl.php
+++ b/app/Model/Acl.php
@@ -18,13 +18,12 @@ class Acl extends Base
*/
private $public_acl = array(
'auth' => array('login', 'check'),
- 'user' => array('github'),
'task' => array('readonly'),
'board' => array('readonly'),
'webhook' => '*',
'ical' => '*',
'feed' => '*',
- 'oauth' => array('google'),
+ 'oauth' => array('google', 'github'),
);
/**