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: 49a25c682b5f98214dfe997fab447f21ffd749e1 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Sherlock
  class QueriesController < Sherlock::ApplicationController
    def show
      @query = @transaction.find_query(params[:id])
    end
  end
end