summaryrefslogtreecommitdiff
path: root/app/controllers/projects/alert_management_controller.rb
blob: ef0c47b0eed961d6aa9f072906895e9f1689d62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class Projects::AlertManagementController < Projects::ApplicationController
  before_action :authorize_read_alert_management_alert!

  feature_category :incident_management
  urgency :low

  def index
  end

  def details
    @alert_id = params[:id]
  end
end