mirror of
https://github.com/Shchoholiev/shopping-assistant-web-client.git
synced 2025-04-04 16:49:36 +00:00
13 lines
353 B
C#
13 lines
353 B
C#
using ShoppingAssistantWebClient.Web.CustomMiddlewares;
|
|
|
|
namespace ShoppingAssistantWebClient.Web.Configurations;
|
|
|
|
public static class GlobalUserMiddlewareExtention
|
|
{
|
|
public static IApplicationBuilder ConfigureGlobalUserMiddleware(this IApplicationBuilder app)
|
|
{
|
|
app.UseMiddleware<GlobalUserMiddleware>();
|
|
return app;
|
|
}
|
|
}
|