gauge/app/controllers/home_controller.rb
2016-10-10 00:20:20 +03:00

19 lines
365 B
Ruby

class HomeController < ApplicationController
def index
end
def ratings
@talks = Talk.ordered_by_rating
@ratings = Ratings.new
@votes_count = TalkPreference.this_years.count
end
def export
@talk_preferences = TalkPreference.this_years.eager_load(:selected_talks)
end
def summary
@summary = Summary.new params[:summary]
end
end