1
0
Fork 0
mirror of synced 2024-07-15 11:15:59 +12:00

Merge pull request #10511 from Budibase/budi-6158/prevent_duplicated_group_names

Display error when populated from the backend
This commit is contained in:
Adria Navarro 2023-05-10 12:59:16 +02:00 committed by GitHub
commit 3ba81ddbf4
3 changed files with 26 additions and 5 deletions

View file

@ -78,7 +78,11 @@
try {
await groups.actions.save(group)
} catch (error) {
notifications.error(`Failed to save user group`)
if (error.message) {
notifications.error(error.message)
} else {
notifications.error(`Failed to save user group`)
}
}
}

View file

@ -66,6 +66,8 @@
} catch (error) {
if (error.status === 400) {
notifications.error(error.message)
} else if (error.message) {
notifications.error(error.message)
} else {
notifications.error(`Failed to save group`)
}

View file

@ -1,10 +1,25 @@
import { generator } from "@budibase/backend-core/tests"
import { db } from "@budibase/backend-core"
import { UserGroupRoles } from "@budibase/types"
export const UserGroup = () => {
const appsCount = generator.integer({ min: 0, max: 3 })
const roles = Array.from({ length: appsCount }).reduce(
(p: UserGroupRoles, v) => {
return {
...p,
[db.generateAppID()]: generator.pickone(["ADMIN", "POWER", "BASIC"]),
}
},
{}
)
let group = {
apps: [],
color: "var(--spectrum-global-color-blue-600)",
icon: "UserGroup",
name: "New group",
roles: { app_uuid1: "ADMIN", app_uuid2: "POWER" },
color: generator.color(),
icon: generator.word(),
name: generator.word({ length: 2 }),
roles: roles,
users: [],
}
return group