Merge branch '1.5.x' of https://github.com/appwrite/console into fix-svelte-errors

This commit is contained in:
Torsten Dittmann
2024-02-02 11:59:46 +01:00
2 changed files with 53 additions and 2 deletions
+52 -2
View File
@@ -79,12 +79,12 @@ export const scopes: {
},
{
scope: 'accounts.read',
description: 'Access to read your active acount',
description: 'Access to read your active account',
category: 'Auth'
},
{
scope: 'accounts.write',
description: 'Access to create, update and delete your active acount',
description: 'Access to create, update and delete your active account',
category: 'Auth'
},
{
@@ -190,6 +190,56 @@ export const scopes: {
description: "Access to execute your project's functions",
category: 'Functions'
},
{
scope: 'targets.read',
description: "Access to read your project's messaging targets",
category: 'Messaging'
},
{
scope: 'targets.write',
description: "Access to create, update, and delete your project's messaging targets",
category: 'Messaging'
},
{
scope: 'providers.read',
description: "Access to read your project's messaging providers",
category: 'Messaging'
},
{
scope: 'providers.write',
description: "Access to create, update, and delete your project's messaging providers",
category: 'Messaging'
},
{
scope: 'messages.read',
description: "Access to read your project's messages",
category: 'Messaging'
},
{
scope: 'messages.write',
description: "Access to create, update, and delete your project's messages",
category: 'Messaging'
},
{
scope: 'topics.read',
description: "Access to read your project's messaging topics",
category: 'Messaging'
},
{
scope: 'topics.write',
description: "Access to create, update, and delete your project's messaging topics",
category: 'Messaging'
},
{
scope: 'subscribers.read',
description: "Access to read your project's messaging topic subscribers",
category: 'Messaging'
},
{
scope: 'subscribers.write',
description: "Access to create, update, and delete your project's messaging topic subscribers",
category: 'Messaging'
},
{
scope: 'locale.read',
description: "Access to access your project's Locale service",
@@ -12,6 +12,7 @@
Auth = 'Auth',
Database = 'Database',
Functions = 'Functions',
Messaging = 'Messaging',
Storage = 'Storage',
Other = 'Other'
}