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

This commit is contained in:
Jonathan Rosenbaum 2023-07-17 21:01:26 +00:00
parent 48a1ca3725
commit 0e502373a9

View File

@ -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)