summaryrefslogtreecommitdiff
path: root/app/controllers/sherlock/queries_controller.rb
blob: 49a25c682b5f98214dfe997fab447f21ffd749e1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Sherlock
  class QueriesController < Sherlock::ApplicationController
    def show
      @query = @transaction.find_query(params[:id])
    end
  end
end