12ee2753c1
Enables frozen string for some vestigial files as well as the following: * app/controllers/projects/**/*.rb * app/controllers/sherlock/**/*.rb * app/controllers/snippets/**/*.rb * app/controllers/users/**/*.rb Partially addresses #47424.
9 lines
190 B
Ruby
9 lines
190 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Sherlock
|
|
class QueriesController < Sherlock::ApplicationController
|
|
def show
|
|
@query = @transaction.find_query(params[:id])
|
|
end
|
|
end
|
|
end
|