Working on the backend interface for supporter registrations

This commit is contained in:
Matt Barringer 2013-02-03 18:12:44 +01:00
parent e0f134bb34
commit 152e8a345d
66 changed files with 12860 additions and 17 deletions

View file

@ -12,7 +12,7 @@ class ConferenceRegistrationController < ApplicationController
@registration = @person.registrations.new(:conference_id => @conference.id)
end
@registration.supporter_registration ||= SupporterRegistration.new
@registration.supporter_registration ||= SupporterRegistration.new(:conference_id => @conference.id)
end
# TODO this is ugly
@ -26,6 +26,7 @@ class ConferenceRegistrationController < ApplicationController
update_registration = false
person.update_attributes(params[:registration][:person_attributes])
params[:registration].delete :person_attributes
params[:registration][:supporter_registration_attributes]["conference_id"] = conference.id
registration = person.registrations.new(params[:registration])
registration.conference_id = conference.id
registration.save!