gitlab-org--gitlab-foss/app/controllers/sherlock/file_samples_controller.rb

10 lines
206 B
Ruby

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