diff options
Diffstat (limited to 'server/sonar-web/src/main/js/api/user_groups.ts')
-rw-r--r-- | server/sonar-web/src/main/js/api/user_groups.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/api/user_groups.ts b/server/sonar-web/src/main/js/api/user_groups.ts index 5949d53c70d..217ab99f2a1 100644 --- a/server/sonar-web/src/main/js/api/user_groups.ts +++ b/server/sonar-web/src/main/js/api/user_groups.ts @@ -50,7 +50,7 @@ export function removeUserFromGroup(data: { id?: string; name?: string; login?: } export function createGroup(data: { description?: string; name: string }): Promise<Group> { - return postJSON('/api/user_groups/create', data).then(r => r.group, throwGlobalError); + return postJSON('/api/user_groups/create', data).then((r) => r.group, throwGlobalError); } export function updateGroup(data: { description?: string; id: number; name?: string }) { |