mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 06:34:39 -04:00
PrivateAPI: Add history controller
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
b872694158
commit
29dbf0b657
4 changed files with 225 additions and 2 deletions
|
@ -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 {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue