foalfetch/app/controllers/authors_controller.rb

7 lines
138 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.find(params[:id])
end
end