bookstore/app/controllers/authors_controller.rb
2021-03-21 20:30:25 +01:00

5 lines
96 B
Ruby

class AuthorsController < ApplicationController
def index
@authors = Author.all
end
end