Remotely/Server/API/HealthCheckController.cs
2024-10-21 11:53:41 -07:00

31 lines
776 B
C#

using Microsoft.AspNetCore.Mvc;
using Remotely.Server.Auth;
using Remotely.Server.Services;
namespace Remotely.Server.API;
/// <summary>
/// Can only be accessed from the local machine. The sole purpose
/// is to provide a healthcheck endpoint for Docker that exercises
/// the database connection.
/// </summary>
[Route("api/[controller]")]
[ApiController]
[ServiceFilter(typeof(LocalOnlyFilter))]
public class HealthCheckController : ControllerBase
{
private readonly IDataService _dataService;
public HealthCheckController(IDataService dataService)
{
_dataService = dataService;
}
[HttpGet]
public async Task<IActionResult> Get()
{
_ = await _dataService.GetOrganizationCountAsync();
return NoContent();
}
}