6 lines
156 B
Ruby
6 lines
156 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
@today = Date.current
|
|
@conferences = Conference.where("start_date >= ?", @today)
|
|
end
|
|
end
|