osem-fcy/app/controllers/home_controller.rb

7 lines
152 B
Ruby
Raw Normal View History

2013-01-07 09:04:09 +01:00
class HomeController < ApplicationController
def index
@today = Date.current
@current = Conference.where("start_date >= ?", @today)
2013-01-07 09:04:09 +01:00
end
end