surajlokhandemmew的活动

can't do that right now , will do tomorrow but meanwhile i need one help. i am having flutter app and this mvc as backoffice since permissions are shared app users can log in into backoffice , how can i avoid it?

hi please can you help there is not known step to reproduce it, I just followed this https://docs.abp.io/en/abp/latest/Background-Jobs-Hangfire after that i was not able to add mongodb as provider so i uninstalled the package and since that i am getting this error while running db migrator

I had tried to install hangfire then it ddidnt work and since that time i am getting this error after removing hangfire.

hi initially it was wrong question, please answer what to do with this error?

ABP Framework version: v8.0.0

UI Type: MVC + Flutter

Database System: MongoDB

Tiered (for MVC) or Auth Server Separated (for Angular): no

Below is the entity with recursion

how to add mongodb with hangfire? there is only one example with usesql as db provider.

and in dbmigrator i am getting error System.ArgumentNullException: 'Value cannot be null. (Parameter 'normalizedName')'

at

public override async Task ProceedAsync()
{
	base.ReturnValue = await Proceed(base.Invocation, ProceedInfo).ConfigureAwait(continueOnCapturedContext: false);
}

please help me on this asap

Hi,

Sorry, my bad.

Should be IOptions<IdentityOptions> not IOptions<AbpIdentityOptions>

working thanks a lot

i am getting this error : using Microsoft.Extensions.Options;

Options must be derived from the Volo.Abp.Options.AbpDynamicOptionsManager`1!",

why this api (await _identityUserManager.AddPasswordAsync (userdetails,input.Password)).CheckErrors(); is asking for a password with non alphanumeric and upper case character when i have disabled it in settings.

does usermanager need ay permission?? and its this class right? IdentityUserManager

Below is the method

  [AllowAnonymous]
  public async Task<bool> PostUpdatePassword(UpdatePasswordDto input)
  {
      try
      {
          var userdetails = await _identityRepository.FindByNormalizedUserNameAsync(input.userId);

          var query = await _verificationCodeRepository.GetQueryableAsync();
          VerificationCode val = new VerificationCode();
           val = query.Where(x => x.PhoneNumber == userdetails.PhoneNumber && x.Validity > DateTime.Now).OrderByDescending(x => x.Validity).FirstOrDefault();
     
          if (val.Code == input.Code)
          {
             // var userdetails = await _identityUserRepository.GetAsync(userId);
              if (userdetails != null)
              {
                  IdentityUserUpdatePasswordInput identityUserUpdatePasswordInput = new IdentityUserUpdatePasswordInput();
                  identityUserUpdatePasswordInput.NewPassword = input.Password;

                //   var userUpdateDto = ObjectMapper.Map<IdentityUserDto, IdentityUserUpdateDto>(userdetails);
                 await  _identityUserRepository.UpdatePasswordAsync(userdetails.Id, identityUserUpdatePasswordInput);
                 //  await _identityUserRepository.UpdateAsync(userdetails.Id, userUpdateDto);
                  return true;
              }
              else
              {
                  return false;
              }

          }
          else
              return false;

      }
      catch (Exception e)
      {
          throw new UserFriendlyException(e.Message);
      }
  }


i am getting exception on this line await _identityUserRepository.UpdatePasswordAsync(userdetails.Id, identityUserUpdatePasswordInput); actually its working on localhost but not on server

显示 47 个条目中的 11 到 20 个.
Made with ❤️ on ABP v8.2.0-preview Updated on 三月 25, 2024, 15:11