mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05: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