Skip to content

Instantly share code, notes, and snippets.

@wwalker
Created June 2, 2009 18:13
Show Gist options
  • Save wwalker/122431 to your computer and use it in GitHub Desktop.
Save wwalker/122431 to your computer and use it in GitHub Desktop.
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