osem-fcy/app/controllers/home_controller.rb

6 lines
156 B
Ruby

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