summaryrefslogtreecommitdiff
path: root/app/controllers/sherlock/file_samples_controller.rb
blob: 0c3bc100106049688ed7a7b0155b6de1a4e4e779 (plain)
1
2
3
4
5
6
7
module Sherlock
  class FileSamplesController < Sherlock::ApplicationController
    def show
      @file_sample = @transaction.find_file_sample(params[:id])
    end
  end
end