14 lines
218 B
Ruby
14 lines
218 B
Ruby
class AuthorsController < ApplicationController
|
|
|
|
def show
|
|
@author = Author.find(params[:id])
|
|
@title = @author.name
|
|
end
|
|
|
|
def index
|
|
@authors = Author.paginate(page: params[:page])
|
|
@title = "Authors"
|
|
end
|
|
|
|
end
|