73322a0e55
Enables frozen string for the following: * app/controllers/*.rb * app/controllers/admin/**/*.rb * app/controllers/boards/**/*.rb * app/controllers/ci/**/*.rb * app/controllers/concerns/**/*.rb Partially addresses #47424.
10 lines
161 B
Ruby
10 lines
161 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class LintsController < ::ApplicationController
|
|
before_action :authenticate_user!
|
|
|
|
def show
|
|
end
|
|
end
|
|
end
|