PrivateAPI: Add me controller

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-03-05 00:30:47 +01:00 committed by David Mehren
parent f6121b58e8
commit 56a46f57fc
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
3 changed files with 146 additions and 1 deletions

View file

@ -9,6 +9,7 @@ import { TokensController } from './tokens/tokens.controller';
import { LoggerModule } from '../../logger/logger.module';
import { UsersModule } from '../../users/users.module';
import { AuthModule } from '../../auth/auth.module';
import { MeController } from './me/me.controller';
import { ConfigController } from './config/config.controller';
import { FrontendConfigModule } from '../../frontend-config/frontend-config.module';
import { HistoryController } from './me/history/history.controller';
@ -27,8 +28,8 @@ import { RevisionsModule } from '../../revisions/revisions.module';
AuthModule,
FrontendConfigModule,
HistoryModule,
NotesModule,
PermissionsModule,
NotesModule,
MediaModule,
RevisionsModule,
],
@ -37,6 +38,7 @@ import { RevisionsModule } from '../../revisions/revisions.module';
ConfigController,
MediaController,
HistoryController,
MeController,
NotesController,
],
})