ÿØÿà 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/state/ |
| Current File : /var/www/talentgenesis_admin_backend/src/state/state.controller.ts |
import { Controller, Get, Post, Body, Patch, Param, Delete } from '@nestjs/common';
import { StateService } from './state.service';
import { CreateStateDto } from './dto/create-state.dto';
import { UpdateStateDto } from './dto/update-state.dto';
import { ApiTags } from '@nestjs/swagger';
@ApiTags('States')
@Controller('state')
export class StateController {
constructor(private readonly stateService: StateService) {}
@Get(':id')
findAll(@Param('id') id: string) {
return this.stateService.findAll(+id);
}
}