summaryrefslogtreecommitdiff
path: root/lib/api/entities/project_hook.rb
blob: 6c71e5d317c67d983877aacc55b21443aefc60d9 (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, :releases_events
      expose :push_events_branch_filter
    end
  end
end