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

incidents_controller.rb « projects « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12cc4dde1f4a776ccf91ec8ff78c4d6c20693578 (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class Projects::IncidentsController < Projects::ApplicationController
  before_action :authorize_read_incidents!

  def index
  end
end