Skip to content

Commit

Permalink
Added API key to the options configuration. (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrmccannon authored Sep 29, 2023
1 parent 8ad4d9e commit 6d27288
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Passwordless.AspNetCore/IdentityBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ private static IServiceCollection AddPasswordlessCore(this IServiceCollection se
var aspNetCoreOptions = aspNetCoreOptionsAccessor.Value;
options.ApiSecret = aspNetCoreOptions.ApiSecret;
options.ApiUrl = aspNetCoreOptions.ApiUrl;
options.ApiKey = aspNetCoreOptions.ApiKey;
});

return services;
Expand Down

0 comments on commit 6d27288

Please sign in to comment.