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.Api
|
||||
{
|
||||
[Route("api/checklist")]
|
||||
[ApiController]
|
||||
public class ChecklistController : ControllerBase
|
||||
{
|
||||
[HttpGet("v1/current")]
|
||||
[Authorize]
|
||||
public async Task<IActionResult> Current()
|
||||
{
|
||||
return Ok(new List<object>());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user