mirror of
https://github.com/docmost/docmost.git
synced 2025-11-21 00:01:09 +10:00
* fix comments on the frontend * move jwt token service to its own module * other fixes and updates
15 lines
548 B
TypeScript
15 lines
548 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AuthController } from './auth.controller';
|
|
import { AuthService } from './services/auth.service';
|
|
import { JwtStrategy } from './strategies/jwt.strategy';
|
|
import { WorkspaceModule } from '../workspace/workspace.module';
|
|
import { SignupService } from './services/signup.service';
|
|
import { TokenModule } from './token.module';
|
|
|
|
@Module({
|
|
imports: [TokenModule, WorkspaceModule],
|
|
controllers: [AuthController],
|
|
providers: [AuthService, SignupService, JwtStrategy],
|
|
})
|
|
export class AuthModule {}
|