Hi,
I don't see the correct configuration.
You can try:
Volo.Abp.TenantManagement.EntityFrameworkCore from SupplierEvaluation.HttpApi.Host project.Volo.Abp.AspNetCore.Mvc.Client package to the SupplierEvaluation.HttpApi.Host projecttypeof(AbpAspNetCoreMvcClientModule) to the SupplierEvaluationHttpApiHostModuleappsettings.json of SupplierEvaluation.HttpApi.Host project.{
"RemoteServices": {
"Default": {
"BaseUrl": "https://....." (gateway URL)
}
}
}
Hi,
ok,I guess you used the suite to install the identityserver module.
Hi,
it's weird, can you share the abp-sample-projects with me? I will check it out. thanks.
If is it about your docker, you need to create self-signed certificate for your local machine. If it is about the production environment, you can use lets-encrypt as a cluster-issuer.
You can check eShopOnAbp docker readme that has information about how to create self-signed certificate.
Hi,
I'd like check it remotely, can we have a meeting via zoom? shiwei.liang@volosoft.com
Hi,
My email is shiwei.liang@volosoft.com
Which one of the three questions are answering with that link? Number 1?
All questions, RegisterDto is extensible, you can set any properties you need.
I would need to include the First and Surname of the user. Would I have to extend the current AccountAppService and override the RegisterAsync method
Yes, you have to.
For my 3rd question, for extending the UserIdentity, I can just use SetProperty on the IdentityUser, I believe since I am using MongoDb, it should make a difference in regards to searching by the stripeId as it should just add a property onto the document... correct?
For MongoDB, they are stored as separate fields of the document. https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities#extra-properties
For example:
var builder = Builders<IdentityUser>.Filter;
var query = builder.Eq("stripeId", Value);
var users = await (await userRepository.GetCollectionAsync()).Find(query).ToListAsync();