Browse Source

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

pull/313/head
xxq250 3 years ago
parent
commit
b68ab63eba
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      app/services/api/v1/users/update_email_service.rb
  2. +1
    -1
      app/services/api/v1/users/update_phone_service.rb

+ 1
- 1
app/services/api/v1/users/update_email_service.rb 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


+ 1
- 1
app/services/api/v1/users/update_phone_service.rb 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


Loading…
Cancel
Save