Add remaining project files
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace DeluxeBackend.Controllers.Studio
|
||||
{
|
||||
[Route("Studio/analytics")]
|
||||
[ApiController]
|
||||
public class AnalyticsController : ControllerBase
|
||||
{
|
||||
[HttpGet("rudderstack-api-key")]
|
||||
[Authorize(Roles = "studioClient")]
|
||||
public async Task<IActionResult> ForRoom()
|
||||
{
|
||||
return Ok("Meow");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user