mirror of
https://github.com/bitwarden/server
synced 2025-12-16 16:23:31 +00:00
context middleware comes after auth
This commit is contained in:
@@ -188,12 +188,12 @@ namespace Bit.Api
|
|||||||
// Add Cors
|
// Add Cors
|
||||||
app.UseCors("All");
|
app.UseCors("All");
|
||||||
|
|
||||||
// Add current context
|
|
||||||
app.UseMiddleware<CurrentContextMiddleware>();
|
|
||||||
|
|
||||||
// Add authentication to the request pipeline.
|
// Add authentication to the request pipeline.
|
||||||
app.UseAuthentication();
|
app.UseAuthentication();
|
||||||
|
|
||||||
|
// Add current context
|
||||||
|
app.UseMiddleware<CurrentContextMiddleware>();
|
||||||
|
|
||||||
// Add MVC to the request pipeline.
|
// Add MVC to the request pipeline.
|
||||||
app.UseMvc();
|
app.UseMvc();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user