2020-05-24 23:13:21 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Projects::AlertManagementController < Projects::ApplicationController
|
|
|
|
before_action :authorize_read_alert_management_alert!
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
feature_category :alert_management
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
def index
|
|
|
|
end
|
|
|
|
|
|
|
|
def details
|
|
|
|
@alert_id = params[:id]
|
2021-01-03 14:25:43 +05:30
|
|
|
push_frontend_feature_flag(:expose_environment_path_in_alert_details, @project)
|
2020-05-24 23:13:21 +05:30
|
|
|
end
|
|
|
|
end
|