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

queries_controller.rb « sherlock « controllers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63b26aab1a4b96475e8ec294585bad0c2ad16867 (plain)
1
2
3
4
5
6
7
module Sherlock
  class QueriesController < Sherlock::ApplicationController
    def show
      @query = @transaction.find_query(params[:id])
    end
  end
end