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

10 lines
182 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Projects::AlertManagementController < Projects::ApplicationController
def index
respond_to do |format|
format.html
end
end
end