Skip to content

Instantly share code, notes, and snippets.

@armandofox
Created May 11, 2021 16:39
Show Gist options
  • Save armandofox/090b252fc85756ad441e38d5106a5906 to your computer and use it in GitHub Desktop.
Save armandofox/090b252fc85756ad441e38d5106a5906 to your computer and use it in GitHub Desktop.
topmovies.rb
class MoviesController < ApplicationController
def index
@movies = Movie.all
@top_5 = Movie.joins(:reviews).group('movie_id').
order("AVG(potatoes) DESC").limit(5)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment