12 lines
163 B
Ruby
12 lines
163 B
Ruby
class BooksController < ApplicationController
|
|
|
|
def show
|
|
@book = Book.find(params[:id])
|
|
end
|
|
|
|
def index
|
|
@books = Book.paginate(page: params[:page])
|
|
end
|
|
|
|
end
|