mirror of
https://github.com/openSUSE/osem.git
synced 2026-04-25 17:27:22 -04:00
7 lines
174 B
Ruby
7 lines
174 B
Ruby
class HomeController < ApplicationController
|
|
def index
|
|
@today = Date.current
|
|
@current = Conference.where("end_date >= ?", @today).order("start_date ASC")
|
|
end
|
|
end
|