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