Skip to content

Commit

Permalink
wip: fix broken cache manager
Browse files Browse the repository at this point in the history
  • Loading branch information
radulescuandrew committed Jul 5, 2024
1 parent 76ff727 commit 6c82ac7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/src/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ import { NotificationsModule } from './modules/notifications/notifications.modul

// Providers
DatabaseProviderModule,
CacheProviderModule,
// CacheProviderModule,
QueueProviderModule,

// Business modules
Expand Down
3 changes: 2 additions & 1 deletion backend/src/shared/controllers/nomenclatures.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import { NomenclaturesService } from '../services';
import { CacheInterceptor } from '@nestjs/cache-manager';

@Public()
@UseInterceptors(ClassSerializerInterceptor, CacheInterceptor)
// @UseInterceptors(ClassSerializerInterceptor, CacheInterceptor)
@UseInterceptors(ClassSerializerInterceptor)
@Controller('nomenclatures')
export class NomenclaturesController {
constructor(private nomenclaturesService: NomenclaturesService) {}
Expand Down

0 comments on commit 6c82ac7

Please sign in to comment.