5 lines
96 B
Ruby
5 lines
96 B
Ruby
class AuthorsController < ApplicationController
|
|
def index
|
|
@authors = Author.all
|
|
end
|
|
end
|