[ // 'enabled' => true, // 'keys' => [ // 'id' => '307655649901891', // 'secret' => 'fb814dea3a38d36aa66222efab35c337', // ], // ], // ]; /* |-------------------------------------------------------------------------- | Group Variables |-------------------------------------------------------------------------- | | 'groupAdmin' | | Name of admin group | (default: 'admin') | | 'groupDefault' | | Name of default group, the new user is added in it | (default: 'default') | | 'groupPublic' | | Name of Public group , people who not logged in | (default: 'public') | */ public $groupAdmin = 'admin'; public $groupDefault = 'default'; public $groupPublic = 'public'; /* |-------------------------------------------------------------------------- | Modules Variables |-------------------------------------------------------------------------- | | 'modules' | | Array of active modules | (default: []) | */ public $modules = []; /* |-------------------------------------------------------------------------- | Database Variables |-------------------------------------------------------------------------- | | 'dbProfile' | | The configuration database profile (defined in Config/Database.php) | (default: 'default') | | 'dbReturnType' | | The format that the results should be returned as, for any get* & | list* function. (e.g. getUser, listUsers, ...). | Available types: | - array | - object | (default: 'array') | | 'dbTableUsers' | | The table which contains users | (default: 'aauth_users') | | 'dbTableUserSessions' | | The table which contains user sessions | (default: 'aauth_user_sessions') | | 'dbTableUserVariables' | | The table which contains users variables | (default: 'aauth_user_variables') | | 'dbTableLoginAttempts' | | The table which contains login attempts | (default: 'aauth_login_attempts') | | 'dbTableLoginTokens' | | The table which contains login tokens | (default: 'aauth_login_tokens') | | 'dbTableGroups' | | The table which contains groups | (default: 'aauth_groups') | | 'dbTableGroupToUser' | | The table which contains join of users and groups | (default: 'aauth_group_to_user') | | 'dbTableGroupToGroup' | | The table which contains join of subgroups and groups | (default: 'aauth_group_to_group') | | 'dbTableGroupVariables' | | The table which contains group variables | (default: 'aauth_group_variables') | | 'dbTablePerms' | | The table which contains permissions | (default: 'aauth_perms') | | 'dbTablePermToUser' | | The table which contains permissions for users | (default: 'aauth_perm_to_user') | | 'dbTablePermToGroup' | | The table which contains permissions for groups | (default: 'aauth_perm_to_group') | | 'dbSoftDeleteUsers' | | Enables soft delete for Users | If this is enabled, it simply set a flag when rows are deleted. | (default: false) | | 'dbSoftDeleteGroups' | | Enables soft delete for Groups | If this is enabled, it simply set a flag when rows are deleted. | (default: false) | | 'dbSoftDeletePerms' | | Enables soft delete for Perms | If this is enabled, it simply set a flag when rows are deleted. | (default: false) | */ public $dbProfile = 'default'; public $dbReturnType = 'array'; public $dbTableUsers = 'aauth_users'; public $dbTableUserSessions = 'aauth_user_sessions'; public $dbTableUserVariables = 'aauth_user_variables'; public $dbTableLoginAttempts = 'aauth_login_attempts'; public $dbTableLoginTokens = 'aauth_login_tokens'; public $dbTableGroups = 'aauth_groups'; public $dbTableGroupToUser = 'aauth_group_to_user'; public $dbTableGroupToGroup = 'aauth_group_to_group'; public $dbTableGroupVariables = 'aauth_group_variables'; public $dbTablePerms = 'aauth_perms'; public $dbTablePermToUser = 'aauth_perm_to_user'; public $dbTablePermToGroup = 'aauth_perm_to_group'; public $dbSoftDeleteUsers = false; public $dbSoftDeleteGroups = false; public $dbSoftDeletePerms = false; }