13 changed files with 90 additions and 25 deletions
@ -0,0 +1,36 @@ |
|||
package app.controllers.user; |
|||
|
|||
import app.annotations.enums.AuthMethod; |
|||
import app.annotations.interfaces.CheckWebAccess; |
|||
import app.annotations.interfaces.WaitAfterNext; |
|||
import app.entities.db.Ban; |
|||
import app.services.db.BanService; |
|||
import jakarta.servlet.http.HttpServletRequest; |
|||
import org.springframework.beans.factory.annotation.Autowired; |
|||
import org.springframework.http.HttpStatus; |
|||
import org.springframework.http.ResponseEntity; |
|||
import org.springframework.web.bind.annotation.GetMapping; |
|||
import org.springframework.web.bind.annotation.RequestMapping; |
|||
import org.springframework.web.bind.annotation.RestController; |
|||
|
|||
import java.util.List; |
|||
|
|||
@RestController |
|||
@RequestMapping("api/web") |
|||
public class PublicController { |
|||
|
|||
BanService banService; |
|||
|
|||
@Autowired |
|||
public PublicController(BanService banService) { |
|||
this.banService = banService; |
|||
} |
|||
|
|||
@GetMapping("/banlist") |
|||
@CheckWebAccess(auth_method = AuthMethod.STEAM64) |
|||
@WaitAfterNext(order = "banlist") |
|||
public ResponseEntity<List<Ban>> getDiscordIDsBanList( |
|||
HttpServletRequest request) { |
|||
return new ResponseEntity<>(banService.getLastBans(20), HttpStatus.OK); |
|||
} |
|||
} |
Loading…
Reference in new issue