AI Implementation feature(857): Authenticated Shell: Header, Quick Tabs and Change Password (#14)

This commit was merged in pull request #14.
This commit is contained in:
2026-07-21 22:26:47 +00:00
parent 8dc8cee769
commit b6dbfcc511
46 changed files with 2705 additions and 211 deletions
+3 -1
View File
@@ -1,4 +1,4 @@
import { Module } from '@nestjs/common';
import { forwardRef, Module } from '@nestjs/common';
import { JwtModule } from '@nestjs/jwt';
import { PassportModule } from '@nestjs/passport';
import { TypeOrmModule } from '@nestjs/typeorm';
@@ -10,6 +10,7 @@ import { AuthController } from './auth.controller';
import { JwtStrategy } from './strategies/jwt.strategy';
import { AdminGuard } from '../../common/guards/admin.guard';
import { SettingsModule } from '../settings/settings.module';
import { UsersModule } from '../users/users.module';
@Module({
imports: [
@@ -24,6 +25,7 @@ import { SettingsModule } from '../settings/settings.module';
}),
}),
SettingsModule,
forwardRef(() => UsersModule),
],
providers: [AuthService, JwtStrategy, AdminGuard],
controllers: [AuthController],