* add first concept * add reverse share funcionality to frontend * allow creator to limit share expiration * moved reverse share in seperate module * add table to manage reverse shares * delete complete share if reverse share was deleted * optimize function names * add db migration * enable reverse share email notifications * fix config variable descriptions * fix migration for new installations
23 lines
712 B
TypeScript
23 lines
712 B
TypeScript
import { forwardRef, Module } from "@nestjs/common";
|
|
import { JwtModule } from "@nestjs/jwt";
|
|
import { ClamScanModule } from "src/clamscan/clamscan.module";
|
|
import { EmailModule } from "src/email/email.module";
|
|
import { FileModule } from "src/file/file.module";
|
|
import { ReverseShareModule } from "src/reverseShare/reverseShare.module";
|
|
import { ShareController } from "./share.controller";
|
|
import { ShareService } from "./share.service";
|
|
|
|
@Module({
|
|
imports: [
|
|
JwtModule.register({}),
|
|
EmailModule,
|
|
ClamScanModule,
|
|
ReverseShareModule,
|
|
forwardRef(() => FileModule),
|
|
],
|
|
controllers: [ShareController],
|
|
providers: [ShareService],
|
|
exports: [ShareService],
|
|
})
|
|
export class ShareModule {}
|