Base solution for your next web application
Starts in:
01 DAYS
01 HRS
01 MIN
01 SEC

Activities of "alexzapros"

Hi, is it fix my issue too?

Hi, any updates here how to fix it?

Hi,

Yes - it works thanks :)

Hi the same is not working for me (MVC JQ ZERO Latest) for reset pwd and email activation

There is no such an entity. Entity type:

It get fine user, but when update it - loss tenantId. this code:

[UnitOfWork]
        public virtual async Task<ActionResult> EmailConfirmation(EmailConfirmationViewModel model)
        {
            var tenantId = model.TenantId.IsNullOrEmpty()
                ? (int?) null
                : SimpleStringCipher.Instance.Decrypt(model.TenantId).To<int>();
            var userId = Convert.ToInt64(SimpleStringCipher.Instance.Decrypt(model.UserId));

            _unitOfWorkManager.Current.SetTenantId(tenantId);

            var user = await _userManager.GetUserByIdAsync(userId);
            if (user == null || user.EmailConfirmationCode.IsNullOrEmpty() ||
                user.EmailConfirmationCode != model.ConfirmationCode)
            {
                throw new UserFriendlyException(L("InvalidEmailConfirmationCode"),
                    L("InvalidEmailConfirmationCode_Detail"));
            }

            user.IsEmailConfirmed = true;
            user.EmailConfirmationCode = null;

            await _userManager.UpdateAsync(user);

UP!!

Well, yes - but if there any way to attach cutom handler to it event?

Hi,

When translating app there is some forget to add translations to it. And you will see it only then when looking into UI.

Is there any ways to track fallback translations - may be logs?

Hi,

I've added new permissions to navigation and authorization provider. Clean all cache from admin - but don't see any permission what I added at Roles edit permissions view.

Which step I missed?

Thanks - I saw this.

But - Real time push notification system (with SignalR integration) in a common means push notifications from browser.

Hi,

At the site <a class="postlink" href="https://www.aspnetzero.com/#features">https://www.aspnetzero.com/#features</a> shows that there

  • Real time push notification system (with SignalR integration)

But I could not find it's description in documentation.

As I understand current notifications based on js proxies. But where is push from browser?

Showing 11 to 20 of 26 entries