bookstore/app/controllers/authors_controller.rb

6 lines
96 B
Ruby
Raw Normal View History

2021-03-21 20:30:25 +01:00
class AuthorsController < ApplicationController
def index
@authors = Author.all
end
end