gitlab-org--gitlab-foss/app/controllers/sherlock/queries_controller.rb

10 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