Browse Source

Merge branch 'develop' into standalone_develop

pull/342/head
yystopf 3 years ago
parent
commit
8f24935a0f
1 changed files with 1 additions and 6 deletions
  1. +1
    -6
      app/views/api/v1/projects/webhooks/_simple_gitea_detail.json.jbuilder

+ 1
- 6
app/views/api/v1/projects/webhooks/_simple_gitea_detail.json.jbuilder View File

@@ -3,12 +3,7 @@ json.type webhook["type"]
json.content_type webhook['config']['content_type']
json.http_method webhook['config']['http_method']
json.url webhook['config']['url']
event = webhook.events
if event["send_everything"]
json.events event["events"].keys.collect{|i| %w(pull_request issues).include?(i) ? i + "_only" : i}
else
json.events event["events"].select{|k, v| v}.keys.collect{|i| %w(pull_request issues).include?(i) ? i + "_only" : i}
end
json.events webhook["events"]
json.active webhook['active']
json.branch_filter webhook['branch_filter']
json.created_at format_time(webhook['created_at'].to_time)

Loading…
Cancel
Save