gitlab-org--gitlab-foss/app/services/projects/prometheus/alerts/create_service.rb

15 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