Move Google authentication to an external plugin

This commit is contained in:
Frederic Guillot
2016-01-29 20:15:53 -05:00
parent 915bf58822
commit dae0c7391a
39 changed files with 41 additions and 574 deletions

View File

@@ -48,20 +48,7 @@ class User extends Base
*/
public function getQuery()
{
return $this->db
->table(self::TABLE)
->columns(
'id',
'username',
'name',
'email',
'role',
'is_ldap_user',
'notifications_enabled',
'google_id',
'github_id',
'twofactor_activated'
);
return $this->db->table(self::TABLE);
}
/**