2020-04-21 11:21:10 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Projects::AlertManagementController < Projects::ApplicationController
|
2020-05-07 17:09:26 -04:00
|
|
|
before_action :authorize_read_alert_management_alert!
|
2020-04-23 11:09:55 -04:00
|
|
|
|
2020-11-19 10:09:13 -05:00
|
|
|
feature_category :incident_management
|
2020-10-08 14:08:32 -04:00
|
|
|
|
2020-04-21 11:21:10 -04:00
|
|
|
def index
|
2020-04-23 11:09:55 -04:00
|
|
|
end
|
|
|
|
|
2020-04-29 02:09:48 -04:00
|
|
|
def details
|
2020-05-06 11:09:42 -04:00
|
|
|
@alert_id = params[:id]
|
2020-04-29 02:09:48 -04:00
|
|
|
end
|
2020-04-21 11:21:10 -04:00
|
|
|
end
|