mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-18 01:10:14 +01:00
🧑🤝🧑 feat: Add People Picker Permissions Management UI
This commit is contained in:
parent
d82a63642d
commit
a434d28579
15 changed files with 419 additions and 229 deletions
|
|
@ -791,6 +791,15 @@ export function updateMemoryPermissions(
|
|||
return request.put(endpoints.updateMemoryPermissions(variables.roleName), variables.updates);
|
||||
}
|
||||
|
||||
export function updatePeoplePickerPermissions(
|
||||
variables: m.UpdatePeoplePickerPermVars,
|
||||
): Promise<m.UpdatePermResponse> {
|
||||
return request.put(
|
||||
endpoints.updatePeoplePickerPermissions(variables.roleName),
|
||||
variables.updates,
|
||||
);
|
||||
}
|
||||
|
||||
/* Tags */
|
||||
export function getConversationTags(): Promise<t.TConversationTagsResponse> {
|
||||
return request.get(endpoints.conversationTags());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue