gitlab-org--gitlab-foss/app/models/hooks/project_hook.rb

35 lines
629 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2012-11-19 18:24:05 +00:00
class ProjectHook < WebHook
2017-12-04 10:18:54 +00:00
include TriggerableHooks
include Presentable
include Limitable
self.limit_scope = :project
2017-07-20 15:12:06 +00:00
2017-12-04 14:45:47 +00:00
triggerable_hooks [
2017-12-04 10:18:54 +00:00
:push_hooks,
:tag_push_hooks,
:issue_hooks,
:confidential_issue_hooks,
:note_hooks,
:confidential_note_hooks,
2017-12-04 10:18:54 +00:00
:merge_request_hooks,
:job_hooks,
:pipeline_hooks,
:wiki_page_hooks,
:deployment_hooks,
:feature_flag_hooks,
:release_hooks
2017-12-04 10:18:54 +00:00
]
2017-07-20 15:12:06 +00:00
belongs_to :project
validates :project, presence: true
def pluralized_name
_('Webhooks')
end
2012-11-19 18:24:05 +00:00
end
ProjectHook.prepend_if_ee('EE::ProjectHook')