appwrite/app/config/scopes/account.php

16 lines
436 B
PHP
Raw Normal View History

<?php
// List of scopes for Account API keys (Tokens)
return [
"account" => [
2025-12-29 09:47:27 +00:00
"description" => 'Access to manage account, its organizations, sessions, tokens, and billing.',
2025-12-29 07:59:07 +00:00
],
"teams.read" => [
"description" => 'Access to read account\'s organizations.',
2025-12-29 07:59:07 +00:00
],
"teams.write" => [
2025-12-29 12:24:26 +00:00
"description" => 'Access to create, update and delete account\'s organizations and its memberships.',
],
];