Base solution for your next web application

Activities of "QuickApp"

Hi @ismcagdas

As you said, I removed the authorization restriction, thank you.

Now I'm trying to add some languages by default for new tenant registration. (Turkish, English etc.)

But I was not successful, I would like your help in this matter too.

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.

Hi @ismcagdas,

Thanks for your answers. I need some more information about this problem.

  1. Does AbpZeroTemplateJwtSecurityTokenHandler.cs runs on all request? Especially I wonder if it is run when getting Refresh Token, Because I need deactivated tenants or users not be able to get AccessToken after being deactivated?
  2. Where is the best place to add token to cache?

Thanks, problem solved.

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.

Thanks @ismcagdas

Which page should I add the setTimeOut parameter to?

Thank you for your help @ismcagdas

Hi @ismcagdas, I tried as follows, but users without features can also see this menu. Where am I doing wrong? new AppMenuItem('QTranslations', 'Pages.QTranslations', 'flaticon-list-1', '/app/main/qTranslate', undefined, undefined, undefined, () => { return this._featureCheckerService.isEnabled('App.MultiLanguageSupportFeature'); }),

Sorry, I missed a parameter.It was fixed by doing the following.

new AppMenuItem('QTranslations', 'Pages.QTranslations', 'flaticon-list-1', '/app/main/qTranslate', undefined, undefined, undefined, null, () => { return this._featureCheckerService.isEnabled('App.MultiLanguageSupportFeature'); }),

Showing 1 to 10 of 22 entries