mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-23 18:26:32 -05:00
NoteDto: Rename attribute metdata
to metadata
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
b4b91acddb
commit
b17da345c7
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ export class NoteDto {
|
|||
content: string;
|
||||
|
||||
@ValidateNested()
|
||||
metdata: NoteMetadataDto;
|
||||
metadata: NoteMetadataDto;
|
||||
|
||||
@IsArray()
|
||||
@ValidateNested({ each: true })
|
||||
|
|
|
@ -82,7 +82,7 @@ export class NotesService {
|
|||
this.logger.warn('Using hardcoded data!');
|
||||
return {
|
||||
content: 'noteContent',
|
||||
metdata: {
|
||||
metadata: {
|
||||
alias: null,
|
||||
createTime: new Date(),
|
||||
description: 'Very descriptive text.',
|
||||
|
|
Loading…
Reference in a new issue