Skip to content

Instantly share code, notes, and snippets.

@neaf
Created June 1, 2010 13:25
Show Gist options
  • Save neaf/420935 to your computer and use it in GitHub Desktop.
Save neaf/420935 to your computer and use it in GitHub Desktop.
BBE.controllers :events do
get :index, map: "/events" do
@event_occurrences = EventOccurrence.all
render "events/index"
end
get :show, map: "/events/:id" do
@event = EventOccurrence.find(params[:id])
raise Sinatra::NotFound unless @event
@booking = Booking.new(event_occurrence_id: @event.id)
@account = current_account || Account.new
if request.xhr?
render "events/show", layout: false
else
render "events/show"
end
end
get :book, map: "/events/:id/book/:occurrence_id" do
@booking = Booking.new
@booking.event_occurrence_id = params[:occurrence_id]
render "events/book"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment