Add 'special' property to GroupInfoDto and rename 'id' to 'name'

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-07-27 22:38:46 +02:00
parent d0c1c93fba
commit fbd89977cd
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB

View file

@ -17,16 +17,18 @@ export class NotePermissionEntryUpdateDto {
export class GroupInfoDto { export class GroupInfoDto {
@IsString() @IsString()
id: string name: string;
@IsString() @IsString()
displayName: string displayName: string;
@IsBoolean()
special: boolean;
} }
export class NoteGroupPermissionEntryDto { export class NoteGroupPermissionEntryDto {
@ValidateNested() @ValidateNested()
group: GroupInfoDto group: GroupInfoDto;
@IsBoolean() @IsBoolean()
canEdit: boolean canEdit: boolean;
} }
export class NotePermissionsDto { export class NotePermissionsDto {