mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
Initialize TypeORM for Group entity
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
68a0852691
commit
40034a4a84
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,8 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { Group } from './group.entity';
|
||||
|
||||
@Module({})
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([Group])],
|
||||
})
|
||||
export class GroupsModule {}
|
||||
|
|
Loading…
Reference in a new issue