19 lines
436 B
C#
19 lines
436 B
C#
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>());
|
|
}
|
|
}
|
|
}
|