Files
fizzy/app/controllers/searches_controller.rb
T
David Heinemeier Hansson 7d86aae67e Inline anemic method
2025-11-18 15:48:40 +01:00

13 lines
369 B
Ruby

class SearchesController < ApplicationController
include Turbo::DriveHelper
def show
if card = Current.user.accessible_cards.find_by_id(params[:q])
@card = card
else
set_page_and_extract_portion_from Current.user.search(params[:q])
@recent_search_queries = Current.user.search_queries.order(updated_at: :desc).limit(10)
end
end
end