summaryrefslogtreecommitdiff
path: root/lib/api/entities/project_hook.rb
blob: 751f95002527d5829f9be0d24d21bae366c81b28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module API
  module Entities
    class ProjectHook < Hook
      expose :project_id, :issues_events, :confidential_issues_events
      expose :note_events, :confidential_note_events, :pipeline_events, :wiki_page_events, :deployment_events
      expose :job_events
      expose :push_events_branch_filter
    end
  end
end