|
|
@ -1,8 +1,10 @@ |
|
|
|
import { Controller, Delete, Get } from '@nestjs/common'; |
|
|
|
import { Controller, Delete, Get, UseGuards } from '@nestjs/common'; |
|
|
|
|
|
|
|
import { GlobalGuard } from '../guards/global/global.guard'; |
|
|
|
import { Acl } from '../middlewares/extract-project-id/extract-project-id.middleware'; |
|
|
|
import { Acl } from '../middlewares/extract-project-id/extract-project-id.middleware'; |
|
|
|
import { CachesService } from '../services/caches.service'; |
|
|
|
import { CachesService } from '../services/caches.service'; |
|
|
|
|
|
|
|
|
|
|
|
@Controller() |
|
|
|
@Controller() |
|
|
|
|
|
|
|
@UseGuards(GlobalGuard) |
|
|
|
export class CachesController { |
|
|
|
export class CachesController { |
|
|
|
constructor(private readonly cachesService: CachesService) {} |
|
|
|
constructor(private readonly cachesService: CachesService) {} |
|
|
|
|
|
|
|
|
|
|
|