summaryrefslogtreecommitdiff
path: root/app/controllers/sherlock/queries_controller.rb
blob: 63b26aab1a4b96475e8ec294585bad0c2ad16867 (plain)
1
2
3
4
5
6
7
module Sherlock
  class QueriesController < Sherlock::ApplicationController
    def show
      @query = @transaction.find_query(params[:id])
    end
  end
end