mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-25 12:34:45 -04:00
Add /me/notes route to MeController
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
5fcb220346
commit
e490ecba36
3 changed files with 15 additions and 2 deletions
|
@ -1,5 +1,6 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { HistoryModule } from '../../history/history.module';
|
||||
import { NotesModule } from '../../notes/notes.module';
|
||||
import { UsersModule } from '../../users/users.module';
|
||||
import { MeController } from './me/me.controller';
|
||||
import { NotesController } from './notes/notes.controller';
|
||||
|
@ -7,7 +8,7 @@ import { MediaController } from './media/media.controller';
|
|||
import { MonitoringController } from './monitoring/monitoring.controller';
|
||||
|
||||
@Module({
|
||||
imports: [UsersModule, HistoryModule],
|
||||
imports: [UsersModule, HistoryModule, NotesModule],
|
||||
controllers: [
|
||||
MeController,
|
||||
NotesController,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue