Add manage permission to documents (#7003)

This commit is contained in:
Tom Moor
2024-06-10 20:38:23 -04:00
committed by GitHub
parent 1ad7c7409a
commit 7bf5c4e533
9 changed files with 43 additions and 20 deletions

View File

@@ -251,8 +251,8 @@
"Select a color": "Select a color",
"Search": "Search",
"Permission": "Permission",
"Can edit": "Can edit",
"View only": "View only",
"Can edit": "Can edit",
"No access": "No access",
"Default access": "Default access",
"Change Language": "Change Language",
@@ -267,7 +267,7 @@
"Documents": "Documents",
"Results": "Results",
"No results for {{query}}": "No results for {{query}}",
"Admin": "Admin",
"Manage": "Manage",
"Invite": "Invite",
"{{ userName }} was added to the collection": "{{ userName }} was added to the collection",
"{{ count }} people added to the collection": "{{ count }} people added to the collection",
@@ -632,6 +632,7 @@
"No people left to add": "No people left to add",
"Active <1></1> ago": "Active <1></1> ago",
"Never signed in": "Never signed in",
"Admin": "Admin",
"{{userName}} was removed from the group": "{{userName}} was removed from the group",
"Add and remove members to the <em>{{groupName}}</em> group. Members of the group will have access to any collections this group has been added to.": "Add and remove members to the <em>{{groupName}}</em> group. Members of the group will have access to any collections this group has been added to.",
"Add people": "Add people",

View File

@@ -107,6 +107,7 @@ export enum CollectionPermission {
export enum DocumentPermission {
Read = "read",
ReadWrite = "read_write",
Admin = "admin",
}
export type IntegrationSettings<T> = T extends IntegrationType.Embed