Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_hook.rb « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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