gauge/app/controllers/home_controller.rb

10 lines
151 B
Ruby
Raw Normal View History

2015-10-06 15:21:46 +03:00
class HomeController < ApplicationController
def index
end
2015-10-06 21:37:53 +03:00
def ratings
@talks = Talk.ordered_by_rating
@ratings = Ratings.new
end
2015-10-06 15:21:46 +03:00
end