Activities of "liangshiwei"

Hi

identity server clients are not isolated from tenants, The client can be a web application. Web application can be multi-tenant.

You can keep migration project, use dotnet ef migrations script command to generates sql and apply to database(just remove __EFMigrationsHistory table changes,you should not have this table). see https://docs.microsoft.com/en-us/ef/core/miscellaneous/cli/dotnet#dotnet-ef-migrations-script

You should login to the application as a tenant to create identity server clients.

I did not see the relevant content in the commercial documents

Hi

Try:

Configure<AbpBundlingOptions>(options =>
{
    options
        .ScriptBundles
        .Configure(LeptonThemeBundles.Scripts.Global, bundle => {
            bundle.AddContributors(typeof(RemoveJqueryScriptContributor));
        });
});

I will try reproduce your problem, but you should remove download file link and file on Internet, because it include your License.

Try:

var client = new HttpClient();
var disco = await client.GetDiscoveryDocumentAsync(_configuration["IdentityClients:Default:Authority"]);
if (disco.IsError)
{
    Console.WriteLine(disco.Error);
    return;
}

client.DefaultRequestHeaders.Add(TenantResolverConsts.DefaultTenantKey,<tenant>);

// request token
var tokenResponse = await client.RequestPasswordTokenAsync(new PasswordTokenRequest
{
    Address = disco.TokenEndpoint,
    ClientId = _configuration["IdentityClients:Default:ClientId"],
    ClientSecret = _configuration["IdentityClients:Default:ClientSecret"],
    UserName = _configuration["IdentityClients:Default:UserName"],
    Password = _configuration["IdentityClients:Default:UserPassword"],
    Scope = _configuration["IdentityClients:Default:Scope"]
});

You can publish .Domain Nuget package to your private Nuget server.

Hi

question 1:

You need to set files property in the Theme folder to embedded files, This is a template error, we will fix it in the next version.

Add :

question 2

~~I see the change time information is removed in version 2.8, So you can't see, you should clean up the publish directory and re-publish~~. I can't reproduce this problem,you should clean up the publish directory and re-publish

question 3

I can't reproduce this problem, But you can place mini.css in the styles folder to fix this problem.

Currently the entity extension system does not seem to support foreign key configuration, it was in the 2.9 milestone.

Showing 4591 to 4600 of 4690 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11