debian-mirror-gitlab/app/controllers/sherlock/file_samples_controller.rb

8 lines
175 B
Ruby
Raw Normal View History

2015-11-26 14:37:03 +05:30
module Sherlock
class FileSamplesController < Sherlock::ApplicationController
def show
@file_sample = @transaction.find_file_sample(params[:id])
end
end
end