mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 22:14:26 +01:00
20 lines
556 B
C#
20 lines
556 B
C#
using BTCPayServer.HostedServices;
|
|
using BTCPayServer.Client.Models;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace BTCPayServer.Controllers.GreenField
|
|
{
|
|
[ApiController]
|
|
public class HealthController : ControllerBase
|
|
{
|
|
[AllowAnonymous]
|
|
[HttpGet("~/api/v1/health")]
|
|
public ActionResult GetHealth(NBXplorerDashboard dashBoard)
|
|
{
|
|
ApiHealthData model = new ApiHealthData() {Synchronized = dashBoard.IsFullySynched()};
|
|
return Ok(model);
|
|
}
|
|
}
|
|
}
|