Welcome to mirror list, hosted at ThFree Co, Russian Federation.

file_samples_controller.rb « sherlock « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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