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

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

    def show
    end
  end
end