Admin cannot block employee if it is admin too

This commit is contained in:
Denis Oleynik 2025-02-20 16:34:34 +03:00
parent e6c0ba5c67
commit df66398b9e

View File

@ -67,7 +67,9 @@ public class AdminController {
throw new EmployeeNotFoundException();
}
if (("" + employee.get().getRole()).equals("ADMIN")) {
throw new EmployeeIsAdminException();
}
employeeService.block(employee.get().getId());