update identity_verifications_controller update

This commit is contained in:
呱呱呱 2024-01-17 15:34:08 +08:00
parent 539bf58e0d
commit afe4a66c2b
1 changed files with 5 additions and 4 deletions

View File

@ -14,13 +14,14 @@ class Admins::IdentityVerificationsController < Admins::BaseController
end
def update
if @identity_verification.update(update_params)
if update_params[:state] == "已拒绝" && update_params[:description].blank?
flash[:danger] = '拒绝理由不能为空'
render 'edit'
else
UserAction.create(action_id: @identity_verification.id, action_type: "UpdateIdentityVerifications", user_id: current_user.id, :ip => request.remote_ip, data_bank: @identity_verification.attributes.to_json)
@identity_verification.update(update_params)
redirect_to admins_identity_verifications_path
flash[:success] = "更新成功"
else
redirect_to admins_identity_verifications_path
flash[:danger] = "更新失败"
end
end