foalfetch/app/controllers/authors_controller.rb
2024-04-04 04:21:31 -04:00

6 lines
138 B
Ruby

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