Add remaining project files
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
using Microsoft.AspNetCore.Http;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace DeluxeBackend.Controllers.Api
|
||||
{
|
||||
[Route("api/objectives")]
|
||||
[ApiController]
|
||||
public class ObjectivesController : ControllerBase
|
||||
{
|
||||
[HttpGet("v1/myprogress")]
|
||||
public async Task<IActionResult> MyProgress()
|
||||
{
|
||||
return Ok(new { Objectives = new List<object>(), ObjectiveGroups= new List<object>() });
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user