fix: 修复健康检查 api 接口允许匿名

This commit is contained in:
Argo Zhang 2020-02-25 23:12:59 +08:00
parent bc1b9b0ffe
commit d2e22eb856
No known key found for this signature in database
GPG Key ID: 152E398953DDF19F
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ namespace Bootstrap.Admin.Controllers.Api
/// 健康检查控制器
/// </summary>
[Route("api/[controller]")]
[Authorize]
[AllowAnonymous]
[ApiController]
public class HealthsController : ControllerBase
{