Activities of "liangshiwei"

Hi,

after my check,you can use IPermissionManager without any problem

Hi,

I guess these databases do not exist yet. You need to run dbmigrator to create them

Hi see https://abp.io/docs/latest/framework/architecture/modularity/extending/module-entity-extensions

view it in another tab in create tenant Modal

you need to override the CreateModalModel

move these code to a new tab

you can download saas module to get CreateModalModel page code

Here is the document about how to override page. https://abp.io/docs/latest/framework/ui/mvc-razor-pages/customization-user-interface

Hi,

They are using RemotePermissionChecker https://github.com/abpframework/abp/blob/rel-8.3/framework/src/Volo.Abp.AspNetCore.Mvc.Client.Common/Volo/Abp/AspNetCore/Mvc/Client/RemotePermissionChecker.cs#L8

you can override it.

Hi,

Here is the document about the override page.

https://abp.io/docs/latest/framework/ui/mvc-razor-pages/customization-user-interface

you can download the account source code to get the page code.

HI,

ABP provider a button to check your connection string

For connection string format, you can check this https://www.connectionstrings.com/

Hi

The problem has been resolved.

Hi,

Of course, you can replace it.

for example:

[Dependency(ReplaceServices = true)]
[ExposeServices(typeof(IdentitySessionDynamicClaimsPrincipalContributor))]
public class MyIdentitySessionDynamicClaimsPrincipalContributor : IdentitySessionDynamicClaimsPrincipalContributor
{
    public override Task ContributeAsync(AbpClaimsPrincipalContributorContext context)
    {
        ....
        return base.ContributeAsync(context);
    }
}

You can try add these packages to your project

<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.5.1" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.5.1" />

HI,

you can disable local login

https://abp.io/docs/latest/modules/account-pro#local-login

If you use Social / External Logins, It is automatically called for authentication when logging in.

Showing 41 to 50 of 5631 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 19, 2024, 10:13