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

application_controller.rb « admin « ci « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4ec2dc9c2cf2322fbd065ad24931c1cf2a65b095 (plain)
1
2
3
4
5
6
7
8
9
10
module Ci
  module Admin
    class ApplicationController < Ci::ApplicationController
      before_action :authenticate_user!
      before_action :authenticate_admin!

      layout "ci/admin"
    end
  end
end