mirror of
https://github.com/appwrite/appwrite
synced 2026-04-27 00:17:34 +00:00
15 lines
436 B
PHP
15 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.',
|
|
],
|
|
];
|