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: 99ce24bd43512829f073d1864249b7fa72e3ff55 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module Ci
  class LintsController < ::ApplicationController
    before_action :authenticate_user!

    def show
    end
  end
end