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

12 lines
494 B
Ruby
Raw Normal View History

2012-11-19 18:24:05 +00:00
class ProjectHook < WebHook
belongs_to :project
scope :issue_hooks, -> { where(issues_events: true) }
scope :confidential_issue_hooks, -> { where(confidential_issues_events: true) }
scope :note_hooks, -> { where(note_events: true) }
scope :merge_request_hooks, -> { where(merge_requests_events: true) }
scope :job_hooks, -> { where(job_events: true) }
scope :pipeline_hooks, -> { where(pipeline_events: true) }
scope :wiki_page_hooks, -> { where(wiki_page_events: true) }
2012-11-19 18:24:05 +00:00
end