summaryrefslogtreecommitdiff
path: root/lib/api/entities.rb
diff options
context:
space:
mode:
authorKirill Zaitsev <kirik910@gmail.com>2014-09-19 12:23:18 +0400
committerKirill Zaitsev <kirik910@gmail.com>2014-10-03 10:23:32 +0400
commitb4963e9dda1ced7c219f24172e9fa4c8a5076b69 (patch)
tree374799440bccd7a984af8d20a9f366d22c7267ab /lib/api/entities.rb
parenta3d90c5045ae322a013484165cdebcd764dc5d69 (diff)
downloadgitlab-ce-b4963e9dda1ced7c219f24172e9fa4c8a5076b69.tar.gz
Add tag_push_events to project hook api
Diffstat (limited to 'lib/api/entities.rb')
-rw-r--r--lib/api/entities.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/api/entities.rb b/lib/api/entities.rb
index ffa3e8a149e..80e9470195e 100644
--- a/lib/api/entities.rb
+++ b/lib/api/entities.rb
@@ -30,7 +30,8 @@ module API
end
class ProjectHook < Hook
- expose :project_id, :push_events, :issues_events, :merge_requests_events
+ expose :project_id, :push_events
+ expose :issues_events, :merge_requests_events, :tag_push_events
end
class ForkedFromProject < Grape::Entity