mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-24 18:56:32 -05:00
Add 'special' property to GroupInfoDto and rename 'id' to 'name'
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
aa462674bc
commit
a5ffbb6e7f
1 changed files with 6 additions and 4 deletions
|
@ -17,16 +17,18 @@ export class NotePermissionEntryUpdateDto {
|
|||
|
||||
export class GroupInfoDto {
|
||||
@IsString()
|
||||
id: string
|
||||
name: string;
|
||||
@IsString()
|
||||
displayName: string
|
||||
displayName: string;
|
||||
@IsBoolean()
|
||||
special: boolean;
|
||||
}
|
||||
|
||||
export class NoteGroupPermissionEntryDto {
|
||||
@ValidateNested()
|
||||
group: GroupInfoDto
|
||||
group: GroupInfoDto;
|
||||
@IsBoolean()
|
||||
canEdit: boolean
|
||||
canEdit: boolean;
|
||||
}
|
||||
|
||||
export class NotePermissionsDto {
|
||||
|
|
Loading…
Reference in a new issue