Hello aksogut,
Could you please share your solution so we can have a look at the issue?
please share to support@abp.io with mentioning the ticket number.
Thank you, Anjali
Hi,
we need to check this remotely, as we are unable understand the tenant switch scenario. is that okay with you?
Hi,
Provider Key is something we get from below code which is not related to abp io
await SignInManager.GetExternalLoginInfoAsync();
please read more about this on https://learn.microsoft.com/en-us/dotnet/api/microsoft.aspnetcore.identity.userlogininfo.providerkey?view=aspnetcore-7.0#microsoft-aspnetcore-identity-userlogininfo-providerkey
Hello sanobarm@cloudassert.com,
Hope you are doing well.
Please do let us know if this solution has worked for you?
Can we close this ticket if your query is resolved? Please Confirm.
Thank you, Anjali
Hi,
can you explain your issue with a scenarios as i am not able clearly able to understand enable url host tenant mapping feature. The sample provided can work in microservices too but yes may differ in configuration.
if you can provide a more detailed instructions of what you are trying to achieve we can provide some sample code related to that.
Thanks.
Hello Sergei.Gorlovetsky,
Its alright, PFB my work email and share the required access:
anjali.musmade@waiin.com
Please do let me know if anything else is needed.
Thank You, Anjali
Hello aksogut,
I tried to reproduce the issue but I am unable.
Could you please elaborate more about steps to reproduce the issue.
I think there is no issue with command abp generate-proxy -t ng
please check whether you are missing any Dto or Recheck your AppService , is any thing missing. You may refer following document for service proxy generation.
`
https://docs.abp.io/en/abp/latest/Tutorials/Part-2?UI=NG&DB=EF#service-proxy-generation
please let me know If you still facing the issue or you may share some details for which api is failing so that we can check issue.
Thank you, Anjali
Hello vu.dh@veek.vn,
Hope you doing well.
Can we close this ticket if your query is resolved? Please confirm.
Awaiting for your valuable response.
Thank You, Anjali
Hello fernando.guilherme,
Please try to add this -
<ngx-datatable-column [name]="prop.displayName" *ngIf="checkIf(data)">
data = {
record: {
tenantId: null // or any other value
}
};
isVisible = data => Boolean(!data.record.tenantId);
checkIf(data) {
console.log(this.isVisible(data));
}
Do we have the data which we can pass in if
condition then in checkIf
method we can call isVisible
which we declared at the top for time being. We don't have data so we added statically which is returning us Boolean value.
So if you are able to pass the data
property in if
condition you will get the Boolean value.
Please do let us know if this solution has worked for you?
Thank You, Anjali
Hello vu.dh@veek.vn,
Please try this,
app.Use((ctx, next) =>
{
ctx.Request.Scheme = "https";
return next(ctx);
});
This code needs to be added in " public override void OnApplicationInitialization(ApplicationInitializationContext context)
" in this file - **AuthServerModule.cs
Please do let me know if this solution works.
Thanks, Anjali