Skip to content

Commit

Permalink
Fix - Correction de l'accès au health endpoint en Anonymous
Browse files Browse the repository at this point in the history
  • Loading branch information
noelmugnier committed Nov 26, 2020
1 parent 4a19e68 commit b5b50b9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Sheaft.Web.Jobs/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -310,8 +310,7 @@ public void Configure(IApplicationBuilder app, IWebHostEnvironment env, IOptions
{
endpoints.MapHangfireDashboard("", new DashboardOptions
{
AppPath = "https://app.sheaft.com",
Authorization = new[] { new MyAuthorizationFilter() }
AppPath = Configuration.GetValue<string>("Portal:Url"),
});
endpoints.MapControllerRoute("default", "{controller=Home}/{action=Index}/{id?}");
});
Expand Down

0 comments on commit b5b50b9

Please sign in to comment.