Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
239 changed files with 10435 additions and 98 deletions
Showing only changes of commit c6ca717b89 - Show all commits

View File

@ -62,6 +62,10 @@ public partial class SetupController(
return Ok(Convert.ToBase64String(token)); return Ok(Convert.ToBase64String(token));
} }
[HttpGet("IsConfigured")]
public ActionResult<bool> IsConfigured() =>
!notConfigureService.IsMaintenanceMode;
[HttpGet("CheckToken")] [HttpGet("CheckToken")]
public ActionResult<bool> CheckToken([FromQuery] string token) public ActionResult<bool> CheckToken([FromQuery] string token)
{ {