FIX unbind ci user bug
This commit is contained in:
parent
64a3ab24e2
commit
4ea033df23
|
@ -60,7 +60,7 @@ module Ci::CloudAccountManageable
|
||||||
if current_user.devops_step == User::DEVOPS_UNINIT || cloud_account.blank?
|
if current_user.devops_step == User::DEVOPS_UNINIT || cloud_account.blank?
|
||||||
return render_error('你未绑定CI服务器')
|
return render_error('你未绑定CI服务器')
|
||||||
elsif current_user.devops_step == User::DEVOPS_UNVERIFIED || current_user.ci_certification?
|
elsif current_user.devops_step == User::DEVOPS_UNVERIFIED || current_user.ci_certification?
|
||||||
ci_user.destroy!
|
ci_user.destroy! if ci_user
|
||||||
Ci::Repo.where(repo_namespace: current_user.login).delete_all
|
Ci::Repo.where(repo_namespace: current_user.login).delete_all
|
||||||
cloud_account.destroy!
|
cloud_account.destroy!
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue