aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/shared_searches_controller.rb
blob: 3208e7c2285dff9bf97f525c26e7e2078837b1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

class SharedSearchesController < ApplicationController
  skip_before_action :user_authenticated!, only: %i[show]

  def index
    @searches = Search.where(shared: true)
  end

  def show
    @search = Search.find(params[:search_id])
  end
end