gauge/app/controllers/home_controller.rb
2015-10-15 02:01:03 +03:00

19 lines
312 B
Ruby

class HomeController < ApplicationController
def index
end
def ratings
@talks = Talk.ordered_by_rating
@ratings = Ratings.new
end
def export
@talks = Talk.all
@talk_preferences = TalkPreference.all
end
def conflicts
@conflict_coefficients = ConflictCoefficient.all
end
end