This commit is contained in:
Bhumi Shah
2025-12-05 20:52:06 +03:00
parent af09df8047
commit 9f437b83e2
4 changed files with 0 additions and 19 deletions

View File

@@ -24,7 +24,6 @@ import java.util.Map;
@RestController
@RequestMapping("/api")
public class EmployeeController {
@Autowired
private EmployeeService employeeService;
@GetMapping("/{code}/auth")
@@ -43,7 +42,6 @@ public class EmployeeController {
return ResponseEntity.status(HttpStatus.NOT_FOUND).build();
}
}
@GetMapping("/{code}/info")
public ResponseEntity<?> getEmployeeInfo(@PathVariable String code) {
try {