using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace DeluxeBackend.Controllers.Api { [Route("api/quickPlay")] [ApiController] public class QuickPlayController : ControllerBase { [HttpGet("v1/getandclear")] [Authorize(Roles = "gameClient")] public async Task GetAndClear() { return Ok(null); } } }