mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-13 14:44:43 -04:00
Add AuthorColor entity
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
40034a4a84
commit
ba9d7a6572
2 changed files with 25 additions and 1 deletions
|
@ -1,10 +1,11 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { AuthorColor } from './author-color.entity';
|
||||
import { Note } from './note.entity';
|
||||
import { NotesService } from './notes.service';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Note])],
|
||||
imports: [TypeOrmModule.forFeature([Note, AuthorColor])],
|
||||
controllers: [],
|
||||
providers: [NotesService],
|
||||
exports: [NotesService],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue