去掉超管的实名认证和职业认证、试用申请的短信通知

dev_cxt2
cxt 6 years ago
parent 088da53e16
commit 5ef251fe4e

@ -27,7 +27,7 @@ class Users::ApplyAuthenticationService < ApplicationService
move_image_file! unless params[:upload_image].to_s == 'false' move_image_file! unless params[:upload_image].to_s == 'false'
end end
sms_notify_admin # sms_notify_admin
user user
end end

@ -39,7 +39,7 @@ class Users::ApplyProfessionalAuthService < ApplicationService
move_image_file! unless params[:upload_image].to_s == 'false' move_image_file! unless params[:upload_image].to_s == 'false'
end end
sms_notify_admin # sms_notify_admin
end end
private private

@ -23,12 +23,12 @@ class Users::ApplyTrailService < ApplicationService
user.update!(certification: 1) user.update!(certification: 1)
apply.status = 1 apply.status = 1
else # else
sms_cache = Rails.cache.read("apply_auth") # sms_cache = Rails.cache.read("apply_auth")
if sms_cache.nil? # if sms_cache.nil?
send_trial_apply_notify! # send_trial_apply_notify!
Rails.cache.write("apply_auth", 1, expires_in: 5.minutes) # Rails.cache.write("apply_auth", 1, expires_in: 5.minutes)
end # end
end end
apply.save! apply.save!
end end

Loading…
Cancel
Save