Browse Source

Changes steps, and adds debug code piped to a file.

master
Jonathan Rosenbaum 10 months ago
parent
commit
0e502373a9
  1. 14
      app/helpers/registration_helper.rb

14
app/helpers/registration_helper.rb

@ -1,9 +1,14 @@
module RegistrationHelper module RegistrationHelper
def registration_steps(conference = @conference) def registration_steps(conference = @conference)
{ File.write('testingdebug', "in registration_steps (registration_helper\n", mode: 'a')
pre: [:policy, :contact_info, :workshops], if conference.city_name.present? && conference.city_id == 433
open: [:policy, :contact_info, :questions, :hosting, :payment, :workshops] [:policy, :contact_info, :workshops]
}[@this_conference.registration_status] else
{
pre: [:policy, :contact_info, :workshops],
open: [:policy, :contact_info, :questions, :hosting, :payment, :workshops]
}[@this_conference.registration_status]
end
end end
def registration_status(registration) def registration_status(registration)
@ -13,6 +18,7 @@ module RegistrationHelper
end end
def current_registration_steps(registration = @registration) def current_registration_steps(registration = @registration)
File.write('testingdebug', 'in current_registration_steps', mode: 'a')
return nil unless registration.present? return nil unless registration.present?
steps = registration_steps(registration.conference) steps = registration_steps(registration.conference)

Loading…
Cancel
Save