2020-04-21 10:39:04 +02:00
|
|
|
using BTCPayServer.Client.Models;
|
2020-06-28 10:55:27 +02:00
|
|
|
using BTCPayServer.HostedServices;
|
2020-04-16 15:39:08 +02:00
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2020-06-30 08:26:19 +02:00
|
|
|
using Microsoft.AspNetCore.Cors;
|
2020-04-16 15:39:08 +02:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
namespace BTCPayServer.Controllers.GreenField
|
|
|
|
{
|
2020-04-21 17:09:17 +02:00
|
|
|
[Controller]
|
2020-06-30 08:26:19 +02:00
|
|
|
[EnableCors(CorsPolicies.All)]
|
2020-04-16 15:39:08 +02:00
|
|
|
public class HealthController : ControllerBase
|
|
|
|
{
|
|
|
|
[AllowAnonymous]
|
|
|
|
[HttpGet("~/api/v1/health")]
|
2020-04-21 10:39:04 +02:00
|
|
|
public ActionResult GetHealth(NBXplorerDashboard dashBoard)
|
2020-04-16 15:39:08 +02:00
|
|
|
{
|
2020-04-21 16:43:14 +02:00
|
|
|
ApiHealthData model = new ApiHealthData()
|
|
|
|
{
|
|
|
|
Synchronized = dashBoard.IsFullySynched()
|
|
|
|
};
|
2020-04-21 10:39:04 +02:00
|
|
|
return Ok(model);
|
2020-04-16 15:39:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|