Add /me/notes route to MeController

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2020-07-26 17:29:20 +02:00
parent 5fcb220346
commit e490ecba36
No known key found for this signature in database
GPG key ID: 6017AF117F9756CB
3 changed files with 15 additions and 2 deletions

View file

@ -12,6 +12,8 @@ import {
import { HistoryEntryUpdateDto } from '../../../history/history-entry-update.dto';
import { HistoryEntryDto } from '../../../history/history-entry.dto';
import { HistoryService } from '../../../history/history.service';
import { NoteMetadataDto } from '../../../notes/note-metadata.dto';
import { NotesService } from '../../../notes/notes.service';
import { UserInfoDto } from '../../../users/user-info.dto';
import { UsersService } from '../../../users/users.service';
@ -22,6 +24,7 @@ export class MeController {
constructor(
private usersService: UsersService,
private historyService: HistoryService,
private notesService: NotesService,
) {}
@Get()
@ -51,4 +54,9 @@ export class MeController {
throw new NotFoundException(e.message);
}
}
@Get('notes')
getMyNotes(): NoteMetadataDto[] {
return this.notesService.getUserNotes('someone');
}
}