osem-fcy/app/controllers/home_controller.rb

7 lines
174 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("end_date >= ?", @today).order("start_date ASC")
2013-01-07 09:04:09 +01:00
end
end