Welcome to mirror list, hosted at ThFree Co, Russian Federation.

alert_management_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bcaaeb3c0177164c9da49e99c1d722352bf7041b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

class Projects::AlertManagementController < Projects::ApplicationController
  before_action :ensure_detail_feature_enabled, only: :details
  before_action :authorize_read_alert_management_alert!
  before_action do
    push_frontend_feature_flag(:alert_list_status_filtering_enabled)
    push_frontend_feature_flag(:create_issue_from_alert_enabled)
  end

  def index
  end

  def details
    @alert_id = params[:id]
  end

  private

  def ensure_detail_feature_enabled
    render_404 unless Feature.enabled?(:alert_management_detail, project)
  end
end