Hi, When you click on the activation link in the membership activation mail, you are directed to the login page without a confirmation message on the opened page.
on page src/account/email-activation/confirm-email-component.ts;
this.notify.success(this.l('YourEmailIsConfirmedMessage'), '', { onClose: () => { this._router.navigate(['account/login']); } });
Even though I removed the "this._router.navigate(['account/login']);" code, the redirect was not disabled.
I want redirection after the user sees the "Email address has been confirmed" message and clicks the "Okey" button.
Thank you for your help in advance.
Thanks @ismcagdas
I have two tables named QWorkspace and QWorkspaceGroup. And there is a foreignkey link between these two tables. (QWorkSpace (Id) ->QWorkSpaceGroup (QWorkSpaceId)
I'm pulling a record from the table with the code below.
QWorkSpace qWorkSpace = await _qWorkSpaceRepository.FirstOrDefaultAsync(e => e.Id == input.QWorkSpaceId);
When I call the table as qWorkSpace.QWorkspaceGroup, it is null.
Hi, I am using the FirstOrDefaultAsync method but the foreignkey table is null. Also does not allow to define Include in FirstOrDefaultAsync method. I will be glad if you help me
Thanks, problem solved.
Hi, I am trying to download the Metronic theme from the ASP.NET Zero Download page, there is a "Not Found" error on the page that opens.
I would be glad if you could help.
Hi @ismcagdas,
Thanks for your answers. I need some more information about this problem.
Hi everyone, When I deactivate the tenant, the tenant continues to use the system until it is not logout. But I want to prevent this somehow. Is there any way to do this while taking RefreshToken? Or is there a different way?
Also, apart from this subject, do you have a ready method where I can get the URL of the client requesting the API? Or should I write a special method myself?
Thanks..
Hi,
I want to add AbpTenants table as navigation property using PowerTools. But there is no such option in the entity dropdown menu, how can I do?
Best regards..
Hi,
Maybe I didn't understand what you said, sorry :)
This database is running when it is being created for the first time. (saves tenantId as null) I want to add a few default languages like default roles every time a tenant is created.
Thanks.