mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
16 lines
436 B
PHP
16 lines
436 B
PHP
<?php
|
|
|
|
// List of scopes for Account API keys (Tokens)
|
|
|
|
return [
|
|
"account" => [
|
|
"description" => 'Access to manage account, its organizations, sessions, tokens, and billing.',
|
|
],
|
|
"teams.read" => [
|
|
"description" => 'Access to read account\'s organizations.',
|
|
],
|
|
"teams.write" => [
|
|
"description" => 'Access to create, update and delete account\'s organizations and its memberships.',
|
|
],
|
|
];
|