gauge/app/controllers/home_controller.rb
2015-10-06 21:37:53 +03:00

10 lines
151 B
Ruby

class HomeController < ApplicationController
def index
end
def ratings
@talks = Talk.ordered_by_rating
@ratings = Ratings.new
end
end