Created
August 8, 2012 14:09
-
-
Save marc-an-be/3295318 to your computer and use it in GitHub Desktop.
Sinatra jQuery Mobile App Chunk 4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get '/' do | |
@events = Event.all(:order => :time.desc) | |
haml :index | |
end | |
get '/new/?' do | |
haml :new | |
end | |
post '/new/?' do | |
begin | |
Event.create( | |
:time => Time.parse(params['time']), | |
:type => params['type'], | |
:description => params['description'] | |
) | |
redirect '/' | |
rescue | |
haml :new | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment