parent
3275b5fd80
commit
b101682e3c
@ -37,7 +37,9 @@ export class CreateUser {
|
||||
}
|
||||
|
||||
if (this.groupId) {
|
||||
if (Array.isArray(this.groupId)) {
|
||||
if (!Array.isArray(this.groupId)) {
|
||||
this.groupId = [this.groupId]
|
||||
}
|
||||
let found_groups = []
|
||||
this.groupId.forEach(async (g) => {
|
||||
const foundGroup = await getConnectionManager().get().getRepository(UserGroup).find({ id: g });
|
||||
@ -48,9 +50,6 @@ export class CreateUser {
|
||||
}
|
||||
});
|
||||
newUser.groups = found_groups
|
||||
} else {
|
||||
newUser.groups = await getConnectionManager().get().getRepository(UserGroup).find({ id: this.groupId });
|
||||
}
|
||||
}
|
||||
|
||||
const new_uuid = uuid.v4()
|
||||
|
Loading…
x
Reference in New Issue
Block a user