Hi,
We are not using Redis cache. Our current role does not have all the permission. Even though we are creating new tenant/user and providing limited access, the RBAC policies are not working.
Scenario:
Please let me know if you need more deatils
i would like to configure with one host app not multiple host app. so all my topic and subscription should be configure in same host app how to do it?
I am still getting below error. An error occurred during the initialize Volo.Abp.Modularity.OnApplicationInitializationModuleLifecycleContributor phase of the module Volo.Abp.EventBus.Azure.AbpEventBusAzureModule, Volo.Abp.EventBus.Azure, Version=10.0.0.0, Culture=neutral, PublicKeyToken=null: Value cannot be null. (Parameter 'topicName'). See the inner exception for details. ---> System.ArgumentNullException: Value cannot be null. (Parameter 'topicName') below is my configuration
"Azure": {
"ServiceBus": {
"Connections": {
"Default": {
"ConnectionString": ""
}
}
}
},
"EventBus": {
"ConnectionName": "Default",
"SubscriberName": "email-subscription",
"TopicName": "notification-event"
},
"Abp": {
"EventBus": {
"Azure": {
"TopicName": "notification-event",
"SubscriptionName": "email-subscription",
"ConnectionName": "Default"
}
}
}
I have shared again. Please refer
i have shared the Logs.txt. Please refer
I have shared the logs to above email please refer
it does not solve the problem
I don't have any exception if you want I will share the logs
I am asking like below kind of code snippet.
ObjectExtensionManager.Instance.Modules()
.ConfigureElsa(Workflowdefinitions =>
{
identity.ConfigureUser(user =>
{
user.AddOrUpdateProperty<string>( //property type: string
"SocialSecurityNumber", //property name
property =>
{
//validation rules
property.Attributes.Add(new RequiredAttribute());
property.Attributes.Add(new StringLengthAttribute(64) { MinimumLength = 4 });
//...other configurations for this property
}
);
});
});
If I would like to extend WorkflowDefinitions, Workflowinstances tables by using ObjectExtensionManager.Instance.Modules(), will I be able, do it?
The reason for extending with additional columns is to store certain other details in the existing WorkflowDefinitions, Workflowinstances tables rather than creating a newly.