Created
June 2, 2016 12:23
-
-
Save aldesantis/94ba635e9a2e8b6d06536230543f4b7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BooksController < ApplicationController | |
def top_ten | |
@books = Book.order('reviews_count DESC').limit(10) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment