Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Implement a strategy to select the language/culture for each request in a localized ASP.NET Core app #254

Merged
merged 9 commits into from
Jul 1, 2024
Prev Previous commit
Next Next commit
refactor: Reduce code width
  • Loading branch information
MrDave1999 committed Jul 1, 2024
commit f1f8fcce9923f8477f02f05fd9e42bb65b590c62
4 changes: 3 additions & 1 deletion src/HostApplication/Extensions/AuthenticationJwtBearer.cs
Original file line number Diff line number Diff line change
@@ -2,7 +2,9 @@

public static class AuthenticationJwtBearer
{
public static IServiceCollection AddAuthenticationJwtBearer(this IServiceCollection services, AppSettings settings)
public static IServiceCollection AddAuthenticationJwtBearer(
this IServiceCollection services,
AppSettings settings)
{
services.AddAuthentication(options =>
{