mirror of
https://github.com/docmost/docmost.git
synced 2025-11-13 13:52:38 +10:00
* feat(backend): forgot password * feat: apply feedback from code review * chore(auth): validate the minimum length of 'newPassword' * chore(auth): make token has an expiry of 1 hour * chore: rename all occurrences of 'code' to 'token' * chore(backend): provide value on nanoIdGen method
10 lines
255 B
TypeScript
10 lines
255 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { ImportService } from './import.service';
|
|
import { ImportController } from './import.controller';
|
|
|
|
@Module({
|
|
providers: [ImportService],
|
|
controllers: [ImportController],
|
|
})
|
|
export class ImportModule {}
|