foalfetch/app/controllers/authors_controller.rb

5 lines
108 B
Ruby

class AuthorsController < ApplicationController
def show
@author = Author.find(params[:id])
end
end