mirror of
https://gitlink.org.cn/Gitlink/forgeplus.git
synced 2026-05-03 11:50:49 +08:00
fixed 验证码校验匹配规则修正
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user