latest work #20

Merged
philipp merged 233 commits from dev into main 2020-12-09 18:49:33 +00:00
Showing only changes of commit b101682e3c - Show all commits

View File

@ -37,20 +37,19 @@ export class CreateUser {
}
if (this.groupId) {
if (Array.isArray(this.groupId)) {
let found_groups = []
this.groupId.forEach(async (g) => {
const foundGroup = await getConnectionManager().get().getRepository(UserGroup).find({ id: g });
if (foundGroup) {
found_groups.push(foundGroup)
} else {
throw new UserGroupNotFoundError();
}
});
newUser.groups = found_groups
} else {
newUser.groups = await getConnectionManager().get().getRepository(UserGroup).find({ id: 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 });
if (foundGroup) {
found_groups.push(foundGroup)
} else {
throw new UserGroupNotFoundError();
}
});
newUser.groups = found_groups
}
const new_uuid = uuid.v4()