Skip to content

Commit

Permalink
Fix - Passage en anonymous du health endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmugnier committed Nov 25, 2020
1 parent 9eacab4 commit 78add6b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Sheaft.Web.Api/Controllers/HealthController.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace Sheaft.Web.Api.Controllers
{
[AllowAnonymous]
public class HealthController : Controller
{
public IActionResult Livez()
Expand Down
4 changes: 3 additions & 1 deletion Sheaft.Web.Jobs/Controllers/HealthController.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace Sheaft.Web.Jobs.Controllers
{
[AllowAnonymous]
public class HealthController : Controller
{
public IActionResult Livez()
Expand Down
4 changes: 3 additions & 1 deletion Sheaft.Web.Manage/Controllers/HealthController.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace Sheaft.Web.Manage.Controllers
{
[AllowAnonymous]
public class HealthController : Controller
{
public IActionResult Livez()
Expand Down
4 changes: 3 additions & 1 deletion Sheaft.Web.Payment/Controllers/HealthController.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace Sheaft.Web.Payment.Controllers
{
[AllowAnonymous]
public class HealthController : Controller
{
public IActionResult Livez()
Expand Down
4 changes: 3 additions & 1 deletion Sheaft.Web.Signalr/Controllers/HealthController.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

namespace Sheaft.Web.Signalr.Controllers
{
[AllowAnonymous]
public class HealthController : Controller
{
public IActionResult Livez()
Expand Down

0 comments on commit 78add6b

Please sign in to comment.