mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-31 07:08:40 -04:00
Add MediaUpload entity & Media module
Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
parent
0a0732049a
commit
f01c7dbbe2
3 changed files with 75 additions and 0 deletions
8
src/media/media.module.ts
Normal file
8
src/media/media.module.ts
Normal file
|
@ -0,0 +1,8 @@
|
|||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { MediaUpload } from './media-upload.entity';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([MediaUpload])],
|
||||
})
|
||||
export class MediaModule {}
|
Loading…
Add table
Add a link
Reference in a new issue