ÿØÿà JFIF H H ÿÛ C GIF89;
| System: Linux srv913213 5.15.0-190-generic #200-Ubuntu SMP Fri Aug 7 15:06:04 UTC 2026 x86_64 Current Path : /var/www/talentgenesis_admin_backend/src/status/ |
| Current File : /var/www/talentgenesis_admin_backend/src/status/status.controller.ts |
import { Controller, Get, Post, Body, Patch, Param, Delete } from '@nestjs/common';
import { StatusService } from './status.service';
import { CreateStatusDto } from './dto/create-status.dto';
import { UpdateStatusDto } from './dto/update-status.dto';
import { ApiTags } from '@nestjs/swagger';
import { SkipThrottle } from '@nestjs/throttler';
@ApiTags('Status')
@Controller('status')
export class StatusController {
constructor(private readonly statusService: StatusService) {}
// @Post()
// create(@Body() createStatusDto: CreateStatusDto) {
// return this.statusService.create(createStatusDto);
// }
@SkipThrottle()
@Get()
findAll() {
return this.statusService.findAll();
}
// @Get(':id')
// findOne(@Param('id') id: string) {
// return this.statusService.findOne(+id);
// }
// @Patch(':id')
// update(@Param('id') id: string, @Body() updateStatusDto: UpdateStatusDto) {
// return this.statusService.update(+id, updateStatusDto);
// }
// @Delete(':id')
// remove(@Param('id') id: string) {
// return this.statusService.remove(+id);
// }
}