We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b52307 commit 6aa8408Copy full SHA for 6aa8408
src/api/types/OAuthScope.ts
@@ -12,6 +12,12 @@ export type OauthScope =
12
/**
13
* write assets on a site */
14
| "assets:write"
15
+ /**
16
+ * read comments on the site */
17
+ | "comments:read"
18
19
20
+ | "comments:write"
21
22
* read collections and items for a site */
23
| "cms:read"
@@ -74,6 +80,8 @@ export const OauthScope = {
74
80
AuthorizedUserRead: "authorized_user:read",
75
81
AssetsRead: "assets:read",
76
82
AssetsWrite: "assets:write",
83
+ CommentsRead: "comments:read",
84
+ CommentsWrite: "comments:write",
77
85
CmsRead: "cms:read",
78
86
CmsWrite: "cms:write",
79
87
CustomCodeRead: "custom_code:read",
0 commit comments