fixed 验证码校验匹配规则修正

This commit is contained in:
xxq250 2022-11-24 17:41:18 +08:00
parent 5da6330f57
commit b68ab63eba
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ class Api::V1::Users::UpdateEmailService < ApplicationService
@mail = params[:email]
@old_mail = user.mail
@code = params[:code]
@verify_code = VerificationCode.where(email: @mail, code: @code, code_type: 10).last
@verify_code = VerificationCode.where(email: @mail, code_type: 10).last
end
def call

View File

@ -11,7 +11,7 @@ class Api::V1::Users::UpdatePhoneService < ApplicationService
@password = params[:password]
@phone = params[:phone]
@code = params[:code]
@verify_code = VerificationCode.where(phone: @phone, code: @code, code_type: 4).last
@verify_code = VerificationCode.where(phone: @phone, code_type: 4).last
end
def call