Merge branch 'bugfix-user-group-workspace-missing-entity-type' into feature/permissions

This commit is contained in:
Mads Rasmussen
2023-09-07 12:30:11 +02:00

View File

@@ -55,9 +55,11 @@ export class UmbUserGroupWorkspaceContext
getEntityId(): string | undefined {
throw new Error('Method not implemented.');
}
getEntityType(): string {
throw new Error('Method not implemented.');
return 'user-group';
}
getData(): UserGroupResponseModel | undefined {
throw new Error('Method not implemented.');
}