diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2017-01-03 21:07:12 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2017-01-03 21:07:12 +0100 |
commit | 2448fa69d6eaf5be280d2e72742045dd8868db6d (patch) | |
tree | 505990b53de7be96fd59a2287a758f1e3e27e7ae /lib/api/project_hooks.rb | |
parent | 8daff07ca70aeefb0fc11541b77298570de4f47e (diff) | |
download | gitlab-ce-2448fa69d6eaf5be280d2e72742045dd8868db6d.tar.gz |
Fix project hooks paramsfix-api-project-hooks-params
Diffstat (limited to 'lib/api/project_hooks.rb')
-rw-r--r-- | lib/api/project_hooks.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/project_hooks.rb b/lib/api/project_hooks.rb index dcc0fb7a911..cb679e6658a 100644 --- a/lib/api/project_hooks.rb +++ b/lib/api/project_hooks.rb @@ -15,7 +15,7 @@ module API optional :note_events, type: Boolean, desc: "Trigger hook on note(comment) events" optional :build_events, type: Boolean, desc: "Trigger hook on build events" optional :pipeline_events, type: Boolean, desc: "Trigger hook on pipeline events" - optional :wiki_events, type: Boolean, desc: "Trigger hook on wiki events" + optional :wiki_page_events, type: Boolean, desc: "Trigger hook on wiki events" optional :enable_ssl_verification, type: Boolean, desc: "Do SSL verification when triggering the hook" optional :token, type: String, desc: "Secret token to validate received payloads; this will not be returned in the response" end |