The Inventory
should get the tenant from the gateway.
make you your gateway service works fine.
Hi,
Please try use organization owner
account to login
HI,
You should able to download ebook from https://abp.io/my-organizations
It throws the above error when registering through the app running on AKS with the same databases on our test server.
Can you see the setting value in the database table?
If so, I guess a different database might be used, you can try to output the log to check.
Logger.LogInformation("connection string is:" + ....)
Hi,
I can't reproduce the problem. (my version is 9.0.2, you can try upgrade to the latest version.)
ObjectExtensionManager.Instance.Modules().ConfigureIdentity(identity =>
{
identity.ConfigureRole(role =>
{
role.AddOrUpdateProperty<bool>(
"IsGLobal",
options =>
{
options.Attributes.Add(new RequiredAttribute());
options.DefaultValue = false;
});
});
});
Hi,
We will fix it immediately. your ticket was refunded.
You can use this temporary solution:
public class TestAppSettingDefinitionProvider : SettingDefinitionProvider
{
public override void Define(ISettingDefinitionContext context)
{
var secret = context.GetOrNull(IdentityProSettingNames.OAuthLogin.ClientSecret);
secret.IsVisibleToClients = false;
}
}