1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/app/config/scopes.php

25 lines
501 B
PHP
Raw Normal View History

2019-12-16 18:11:41 +13:00
<?php
return [ // List of publicly visible scopes
'users.read',
'users.write',
'teams.read',
'teams.write',
'collections.read',
'collections.write',
'documents.read',
'documents.write',
'files.read',
'files.write',
// 'platforms.read',
// 'platforms.write',
// 'keys.read',
// 'keys.write',
// 'tasks.read',
// 'tasks.write',
// 'webhooks.read',
// 'webhooks.write',
'locale.read',
'avatars.read',
2020-05-17 03:34:37 +12:00
'health.read',
2019-12-16 18:11:41 +13:00
];;