mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 14:44:43 -04:00
RevisionService: Implement getNoteRevisionMetadatas
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
3d4e9a9b92
commit
05a62b31ee
4 changed files with 31 additions and 15 deletions
|
@ -1,4 +1,4 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { forwardRef, Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { RevisionsModule } from '../revisions/revisions.module';
|
||||
import { UsersModule } from '../users/users.module';
|
||||
|
@ -9,7 +9,7 @@ import { NotesService } from './notes.service';
|
|||
@Module({
|
||||
imports: [
|
||||
TypeOrmModule.forFeature([Note, AuthorColor]),
|
||||
RevisionsModule,
|
||||
forwardRef(() => RevisionsModule),
|
||||
UsersModule,
|
||||
],
|
||||
controllers: [],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue