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
+2 -1
View File
@@ -4,9 +4,10 @@ import { UserEntity } from '../../database/entities/user.entity';
import { SettingEntity } from '../../database/entities/setting.entity';
import { SystemController } from './system.controller';
import { SystemService } from './system.service';
import { SettingsModule } from '../settings/settings.module';
@Module({
imports: [TypeOrmModule.forFeature([UserEntity, SettingEntity])],
imports: [TypeOrmModule.forFeature([UserEntity, SettingEntity]), SettingsModule],
controllers: [SystemController],
providers: [SystemService],
})