Merge remote-tracking branch 'origin/Max/Backend/UserDelete' into wal/front/listingUsers
This commit is contained in:
		| @ -125,7 +125,7 @@ public class UserController { | ||||
|  | ||||
|     @DeleteMapping("/user/{id}") | ||||
|     public ResponseEntity<String> deleteStudent(@RequestHeader("Authorization") String token, @PathVariable Long id){ | ||||
|         if (authServ.isNotIn(new Role[]{Role.Admin,Role.Secretary},token)) | ||||
|         if (authServ.isNotIn(new Role[]{Role.Admin,Role.Secretary},token) || id.equals(authServ.getUserFromToken(token).getRegNo())) | ||||
|             return new UnauthorizedResponse<>(null); | ||||
|  | ||||
|         User toDelete = userService.getUserById(id); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user