summaryrefslogtreecommitdiff
path: root/app/controllers/ci/lints_controller.rb
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