|
|
@ -1,5 +1,6 @@ |
|
|
|
package app.controllers.admin; |
|
|
|
|
|
|
|
import app.annotations.enums.AuthMethod; |
|
|
|
import app.annotations.interfaces.CheckPermitionFlag; |
|
|
|
import app.annotations.interfaces.CheckWebAccess; |
|
|
|
import app.entities.db.Ban; |
|
|
@ -66,4 +67,13 @@ public class BanController { |
|
|
|
profileService.GetProfile(admin_steam64, List.of())); |
|
|
|
return result ? new ResponseEntity(result, HttpStatus.OK) : new ResponseEntity(result, HttpStatus.NOT_FOUND); |
|
|
|
} |
|
|
|
|
|
|
|
@GetMapping("/list") |
|
|
|
@CheckWebAccess(auth_method = AuthMethod.SECRET_KEY) |
|
|
|
public ResponseEntity banList( |
|
|
|
HttpServletRequest request, |
|
|
|
@RequestParam(required = false, defaultValue = "10") Integer limit |
|
|
|
){ |
|
|
|
return new ResponseEntity(banService.getLastBans(limit), HttpStatus.OK); |
|
|
|
} |
|
|
|
} |
|
|
|