Hi, just found out that AddTokenValidityKeyAsync method is not saving the token on the AbpUserToken table. May I have some input on why it suddenly stop working?
Thanks.
Please answer the following questions before submitting an issue. YOU MAY DELETE THE PREREQUISITES SECTION.
Thanks
Hi,
I would like to ask, why GetCustomCss and GetTenantLogo slows down when I have multiple tabs for aspnetzero Ui(angular). When I open the UI(angular) on multiple times there are times that the page will load first before the Css and Logo for specific Tenant.
Images are actual timing of GetCustomCss and GetTenantLogo when loaded with multiple tabs.
Hi,
Weve been trying to use multitenancy but cannot determine the tenant through TENANCY_NAME from url. Were using aspnetzero 7.2. TENANCY_NAME from url should set the tenant on the login page.
Here is what we have on appconfig/appsetting. Angular: appconfig.json "remoteServiceBaseUrl": "http://{TENANCY_NAME}.domain1.com", "appBaseUrl": "http://{TENANCY_NAME}.domain.com",
Backend: appsetting.Production.json "ServerRootAddress": "http://{TENANCY_NAME}.domain1.com", "ClientRootAddress": "http://{TENANCY_NAME}.domain.com", appsetting.Staging.json "ServerRootAddress": "http://{TENANCY_NAME}.domain1.com", "ClientRootAddress": "http://{TENANCY_NAME}.domain.com",
Weve tried the solution/hack from https://support.aspnetzero.com/QA/Questions/6120 and its working. But we want the solution from your end.
Hi,
I would like to ask if you can help us on how to set up domain for different tenant on aspnetzero. And how to create subdomain on azure server, for us to test the multitenancy domains.
Thanks.
Hi, I just want to ask if you can help about the loader of primeng table. On azure website the loader is hiding too fast even the table is not yet populated. But on local machine using the same database connection it is not happening. Hope you can help me with this. Heres an snippet of the code:
ts file:
getTagTypes(event?: LazyLoadEvent) {
if (this.primengTableHelper.shouldResetPaging(event)) {
this.paginator.changePage(0);
return;
}
this.primengTableHelper.showLoadingIndicator();
this._tagTypeAppService.getTagType(
undefined,
this.filterText,
this.primengTableHelper.getSorting(this.dataTable),
this.primengTableHelper.getMaxResultCount(this.paginator, event),
this.primengTableHelper.getSkipCount(this.paginator, event)
).pipe(finalize(() => this.primengTableHelper.hideLoadingIndicator() ))
.subscribe(result => {
this.primengTableHelper.totalRecordsCount = result.totalCount;
this.primengTableHelper.records = result.items;
this.primengTableHelper.hideLoadingIndicator();
});
}