Activities of "maliming"

Answer

hi BernardoTeixeira

Sorry, We have no knowledge about powerbi. You can search for how it integrates with Identity server.

hi

You can set a callback when modal open.

https://github.com/abpframework/abp/blob/37184bcdc25406468d5c62af5a74d61e16eafa9d/framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/modal-manager.js#L195

hi

I was just asking if we can disable redis cache on the public website.

Yes, see https://docs.abp.io/en/abp/latest/Redis-Cache#configuration

The easy CRM blazor is not running because the preview blazor nuggets are not getting downloaded/

Please update your NuGet.Config.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
    <add key="BlazoriseMyGet" value="https://www.myget.org/F/blazorise/api/v3/index.json" />
    !!!// your ABP_COMMERCIAL_NUGET_SOURCE
  </packageSources>
</configuration>

The database folder is blank, i need to perform migrations to run the project for the first time ?

It will create the database automatically after running .

hi

You can check these document first. https://docs.abp.io/en/abp/latest/Localization https://docs.abp.io/en/abp/latest/UI/Angular/Localization

Answer

Are you planning to implement account linking for openid?

We haven't found a good solution yet.

Is it possible to implement account linking for openid?

This is possible, but just like you use your google account to log in to a website, when you switch google account, the website will not switch google identity.

Especially there may be multiple angular or mvc clients.

Is there a configuration option to disable account linking?

Not yet.

Answer

The angular client is authenticated by openid, it currently cannot implement link user login.

The link user can only work in the identity server website.

: )

Can you share your Bookstore project to me? liming.ma@volosoft.com

  1. Remove this funtion call from startup.cs

Yes.

2.which project/class to put this method in

Projects that depend on AbpAccountWebModule, such as web.

hi

You need use the Volo.Abp.Identity.IdentityUser as TUser.

public override void PreConfigureServices(ServiceConfigurationContext context)
{
    context.Services.PreConfigure<IdentityBuilder>(options =>
    {
        options.Services.Replace(ServiceDescriptor
            .Scoped<IPasswordHasher<Volo.Abp.Identity.IdentityUser>,
                Md5PasswordHasher<Volo.Abp.Identity.IdentityUser>>());
    });
}
Showing 6561 to 6570 of 6852 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11