debian-mirror-gitlab/app/services/projects/prometheus/alerts/create_service.rb
2020-04-22 19:07:51 +05:30

16 lines
271 B
Ruby

# frozen_string_literal: true
module Projects
module Prometheus
module Alerts
class CreateService < BaseService
include AlertParams
def execute
project.prometheus_alerts.create(alert_params)
end
end
end
end
end