Add remaining project files
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace DeluxeBackend.Controllers.Studio
|
||||
{
|
||||
[Route("Studio/cloud-builds")]
|
||||
[ApiController]
|
||||
public class CloudBuildsController : ControllerBase
|
||||
{
|
||||
[HttpGet("for-room")]
|
||||
[Authorize(Roles = "studioClient")]
|
||||
public async Task<IActionResult> ForRoom()
|
||||
{
|
||||
return Ok(new
|
||||
{
|
||||
Results = new List<object>(),
|
||||
TotalResults = 0
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user