mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-22 03:05:19 -04:00
refactor(note-group-permission-entry-dto): do not embed Group objects
This is part of an effort to consistently not embed Group objects in API responses. Names are returned instead. Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
13284b26cb
commit
b40b2e164f
3 changed files with 12 additions and 12 deletions
src/notes
|
@ -379,7 +379,7 @@ export class NotesService {
|
|||
canEdit: noteUserPermission.canEdit,
|
||||
})),
|
||||
sharedToGroups: groupPermissions.map((noteGroupPermission) => ({
|
||||
group: this.groupsService.toGroupDto(noteGroupPermission.group),
|
||||
groupName: noteGroupPermission.group.name,
|
||||
canEdit: noteGroupPermission.canEdit,
|
||||
})),
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue