|
|
@ -4,6 +4,7 @@ import app.annotations.enums.AuthMethod; |
|
|
|
import app.annotations.interfaces.BurstUpdatePlayers; |
|
|
|
import app.annotations.interfaces.CheckPermitionFlag; |
|
|
|
import app.annotations.interfaces.CheckWebAccess; |
|
|
|
import app.annotations.interfaces.WaitAfterNext; |
|
|
|
import app.entities.db.Ban; |
|
|
|
import app.services.ProfileService; |
|
|
|
import app.services.db.BanService; |
|
|
@ -37,6 +38,7 @@ public class BanController { |
|
|
|
@CheckWebAccess |
|
|
|
@CheckPermitionFlag(flag = "d") |
|
|
|
@BurstUpdatePlayers |
|
|
|
@WaitAfterNext |
|
|
|
public ResponseEntity banPlayer( |
|
|
|
HttpServletRequest request, |
|
|
|
@CookieValue(value = "steam64") String admin_steam64, |
|
|
@ -55,6 +57,7 @@ public class BanController { |
|
|
|
@DeleteMapping |
|
|
|
@CheckWebAccess |
|
|
|
@CheckPermitionFlag(flag = "e") |
|
|
|
@WaitAfterNext |
|
|
|
public ResponseEntity unbanPlayer( |
|
|
|
HttpServletRequest request, |
|
|
|
@CookieValue(value = "steam64") String admin_steam64, |
|
|
|