foalfetch/app/controllers/authors_controller.rb

10 lines
261 B
Ruby
Raw Normal View History

2024-04-04 10:21:23 +02:00
# frozen_string_literal: true
class AuthorsController < ApplicationController
def show
author = Author.select(:name).find(params[:id])
scope = SearchScope.new(nil, { author: author.name })
redirect_to "/search?scope=#{scope.scope_key}"
end
end