debian-mirror-gitlab/lib/api/entities/project_hook.rb

13 lines
352 B
Ruby
Raw Normal View History

2020-03-13 15:44:24 +05:30
# frozen_string_literal: true
module API
module Entities
class ProjectHook < Hook
expose :project_id, :issues_events, :confidential_issues_events
2020-10-24 23:57:45 +05:30
expose :note_events, :confidential_note_events, :pipeline_events, :wiki_page_events, :deployment_events
2020-03-13 15:44:24 +05:30
expose :job_events
expose :push_events_branch_filter
end
end
end