return entity type from method

This commit is contained in:
Mads Rasmussen
2023-09-07 12:26:13 +02:00
parent 480fb85c85
commit 0f8bc00309

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.');
}