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

module Sherlock
  class FileSamplesController < Sherlock::ApplicationController
    def show
      @file_sample = @transaction.find_file_sample(params[:id])
    end
  end
end