PrivateAPI: Add history controller

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-03-03 15:25:11 +01:00 committed by David Mehren
parent b872694158
commit 29dbf0b657
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
4 changed files with 225 additions and 2 deletions

View file

@ -9,9 +9,12 @@ 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 { HistoryController } from './me/history/history.controller';
import { HistoryModule } from '../../history/history.module';
import { NotesModule } from '../../notes/notes.module';
@Module({
imports: [LoggerModule, UsersModule, AuthModule],
controllers: [TokensController],
imports: [LoggerModule, UsersModule, AuthModule, HistoryModule, NotesModule],
controllers: [TokensController, HistoryController],
})
export class PrivateApiModule {}