1
0
Fork 0
mirror of synced 2024-05-20 04:32:37 +12:00
appwrite/app/config/roles.php

84 lines
1.7 KiB
PHP

<?php
use Appwrite\Auth\Auth;
$member = [
'public',
'home',
'console',
'account',
'teams.read',
'teams.write',
'documents.read',
'documents.write',
'files.read',
'files.write',
'projects.read',
'projects.write',
'locale.read',
'avatars.read',
'execution.read',
'execution.write',
];
$admins = [
'teams.read',
'teams.write',
'documents.read',
'documents.write',
'files.read',
'files.write',
'users.read',
'users.write',
'collections.read',
'collections.write',
'platforms.read',
'platforms.write',
'keys.read',
'keys.write',
'webhooks.read',
'webhooks.write',
'locale.read',
'avatars.read',
'health.read',
'functions.read',
'functions.write',
'execution.read',
'execution.write',
];
return [
Auth::USER_ROLE_GUEST => [
'label' => 'Guest',
'scopes' => [
'public',
'home',
'console',
'documents.read',
'files.read',
'locale.read',
'avatars.read',
],
],
Auth::USER_ROLE_MEMBER => [
'label' => 'Member',
'scopes' => \array_merge($member, []),
],
Auth::USER_ROLE_ADMIN => [
'label' => 'Admin',
'scopes' => \array_merge($admins, []),
],
Auth::USER_ROLE_DEVELOPER => [
'label' => 'Developer',
'scopes' => \array_merge($admins, []),
],
Auth::USER_ROLE_OWNER => [
'label' => 'Owner',
'scopes' => \array_merge($member, $admins, []),
],
Auth::USER_ROLE_APP => [
'label' => 'Application',
'scopes' => ['health.read'],
],
];