gitlab-org--gitlab-foss/app/controllers/projects/alert_management_controller.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
291 B
Ruby
Raw Normal View History

# 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