mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
27 lines
730 B
PHP
27 lines
730 B
PHP
<?php
|
|
|
|
// List of scopes for organization (teams) API keys
|
|
|
|
return [
|
|
"projects.read" => [
|
|
"description" => 'Access to read organization projects',
|
|
"category" => "Projects",
|
|
],
|
|
"projects.write" => [
|
|
"description" =>
|
|
"Access to create, update, and delete organization projects",
|
|
"category" => "Projects",
|
|
],
|
|
"devKeys.read" => [
|
|
"description" => 'Access to read project\'s development keys',
|
|
"category" => "Other",
|
|
"deprecated" => true,
|
|
],
|
|
"devKeys.write" => [
|
|
"description" =>
|
|
"Access to create, update, and delete project\'s development keys",
|
|
"category" => "Other",
|
|
"deprecated" => true,
|
|
],
|
|
];
|