gitlab-org--gitlab-foss/app/models/project_services/emails_on_push_service.rb

42 lines
892 B
Ruby
Raw Normal View History

# == Schema Information
#
# Table name: services
#
2014-10-09 15:22:20 +00:00
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# project_id :integer
2014-10-09 15:22:20 +00:00
# created_at :datetime
# updated_at :datetime
# active :boolean default(FALSE), not null
# properties :text
# template :boolean default(FALSE)
#
class EmailsOnPushService < Service
2014-09-08 00:54:18 +00:00
prop_accessor :recipients
validates :recipients, presence: true, if: :activated?
def title
'Emails on push'
end
def description
'Email the commits and diff of each push to a list of recipients.'
end
def to_param
'emails_on_push'
end
def execute(push_data)
EmailsOnPushWorker.perform_async(project_id, recipients, push_data)
end
def fields
[
{ type: 'textarea', name: 'recipients', placeholder: 'Emails separated by whitespace' },
]
end
end