Browse Source

FIX project search wrong

tags/v1.0.0
Jasder 5 years ago
parent
commit
930f8195b7
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/controllers/ci/cloud_accounts_controller.rb

+ 2
- 2
app/controllers/ci/cloud_accounts_controller.rb View File

@@ -140,8 +140,8 @@ class Ci::CloudAccountsController < Ci::BaseController

# TODO
# 删除用户项目下的与ci相关的所有webhook
user.projects.select(:identifier, :gitea_webhook_id).each do |project|
result = Gitea::Hooks::DestroyService.call(user.gitea_token, user.login, project.identifier, project.gitea_webhook_id)
user.projects.select(:id, :identifier, :gitea_webhook_id).each do |project|
result = Gitea::Hooks::DestroyService.call(user.gitea_token, user.login, project.identifier, project.gitea_webhook_id) unless project.gitea_webhook_id.blank?
project.update_column(:gitea_webhook_id, nil) if result.status == 204
end
end


Loading…
Cancel
Save