mirror of
https://github.com/wahyd4/Libr.git
synced 2026-08-25 12:45:51 +10:00
7 lines
98 B
Ruby
7 lines
98 B
Ruby
class HomeController < ApplicationController
|
|
|
|
def index
|
|
@books = Book.order 'id DESC'
|
|
end
|
|
end
|