Created
June 2, 2009 18:13
-
-
Save wwalker/122431 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
def specify | |
@tars_district_registration = TarsDistrictRegistration.find_by_id params[:id] | |
@tars_district_registration.tars_attendees << TarsAttendee.new | |
@tars_district_registration.tars_attendees << TarsAttendee.new | |
@tars_district_registration.tars_attendees << TarsAttendee.new | |
@tars_district_registration_id = params[:id] | |
respond_to do |format| | |
format.html # specify.html.erb | |
format.xml { render :xml => @tars_attendee } | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment