9 lines
227 B
Ruby
9 lines
227 B
Ruby
class HomeController < ApplicationController
|
|
|
|
def index
|
|
Time.zone = 'Pacific Time (US & Canada)'
|
|
@year = params['year'].nil? ? Date.today.year : params['year'].to_i
|
|
@events = [Event.new]
|
|
end
|
|
end
|