I have acquired a Blazorise product token, put it in my appsettings.json and applied it like this in my BlazorModule:
private void ConfigureBlazorise(ServiceConfigurationContext context, IConfiguration configuration)
{
context.Services
.AddBootstrap5Providers()
.AddFontAwesomeIcons();
Configure< BlazoriseOptions>(options =>
{
options.ProductToken = configuration["BlazoriseToken"];
});
}
However, the "free version" message is still displayed on my site. Why?
Thanks!
I'd like to override CreateExternalUserAsync to add some custom logic when new users are created from Azure AD. How can I accomplish this with Blazor as UI?