osem-fcy/app/controllers/home_controller.rb
2013-01-07 09:04:09 +01:00

7 lines
157 B
Ruby

class HomeController < ApplicationController
def index
@today = Date.current
@conferences = Conference.where("start_date >= ?", @today)
end
end