Skip to content

Commit

Permalink
Resolve #572
Browse files Browse the repository at this point in the history
  • Loading branch information
sei-bstein committed Jan 14, 2025
1 parent 396fc6b commit 0064bd6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/Gameboard.Api/Features/ApiStatus/ApiStatusController.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace Gameboard.Api.Features.Status;

[ApiController]
[Route("/api/status")]
public class ApiStatusController : ControllerBase
{
[HttpGet]
[AllowAnonymous]
public ActionResult Get()
=> Ok();
}

0 comments on commit 0064bd6

Please sign in to comment.