mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-25 11:16:31 -05:00
a5d8c9cc33
Signed-off-by: David Mehren <git@herrmehren.de>
39 lines
968 B
TypeScript
39 lines
968 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
import { ApiProperty } from '@nestjs/swagger';
|
|
import { Type } from 'class-transformer';
|
|
import { IsArray, IsString, ValidateNested } from 'class-validator';
|
|
|
|
import { EditDto } from '../revisions/edit.dto';
|
|
import { BaseDto } from '../utils/base.dto.';
|
|
import { NoteMetadataDto } from './note-metadata.dto';
|
|
|
|
export class NoteDto extends BaseDto {
|
|
/**
|
|
* Markdown content of the note
|
|
* @example "# I am a heading"
|
|
*/
|
|
@IsString()
|
|
@ApiProperty()
|
|
content: string;
|
|
|
|
/**
|
|
* Metadata of the note
|
|
*/
|
|
@Type(() => NoteMetadataDto)
|
|
@ValidateNested()
|
|
@ApiProperty({ type: NoteMetadataDto })
|
|
metadata: NoteMetadataDto;
|
|
|
|
/**
|
|
* Edit information of this note
|
|
*/
|
|
@IsArray()
|
|
@ValidateNested({ each: true })
|
|
@Type(() => EditDto)
|
|
@ApiProperty({ isArray: true, type: EditDto })
|
|
editedByAtPosition: EditDto[];
|
|
}
|