v0.9.37 bug fixes

This commit is contained in:
2026-03-16 17:55:30 -04:00
parent 3f7579e6be
commit 3519042591
8 changed files with 37 additions and 23 deletions

View File

@@ -105,6 +105,7 @@ export const api = {
updateTeamSettings: (body) => req('PATCH', '/settings/team', body),
// User groups (Group Manager)
getMyUserGroups: () => req('GET', '/usergroups/me'),
getUserGroups: () => req('GET', '/usergroups'),
getUserGroup: (id) => req('GET', `/usergroups/${id}`),
createUserGroup: (body) => req('POST', '/usergroups', body),