mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-12-29 06:14:04 +00:00
Initialize TypeORM for Group entity
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
82f6e6920c
commit
669dd01ecc
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