File tree Expand file tree Collapse file tree 5 files changed +11
-54
lines changed Expand file tree Collapse file tree 5 files changed +11
-54
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ class Application < Rails::Application
125125
126126 # StateFile
127127 config . state_file_start_of_open_intake = et . parse ( '2025-01-15 00:00:00' )
128- config . state_file_end_of_new_intakes = et . parse ( '2025-10-15 23:59:59' )
129- config . state_file_end_of_in_progress_intakes = et . parse ( '2025-10-25 23:59:59' )
128+ config . state_file_end_of_new_intakes = et . parse ( '2025-10-22 23:59:59' )
129+ config . state_file_end_of_in_progress_intakes = et . parse ( '2025-10-31 23:59:59' )
130130 config . state_file_show_faq_date_start = pt . parse ( '2024-12-10 00:00:00' )
131131 config . state_file_show_faq_date_end = pt . parse ( '2025-10-15 23:59:59' )
132132
Original file line number Diff line number Diff line change 3232
3333 Rails . application . default_url_options = config . action_mailer . default_url_options
3434 config . efile_environment = "test"
35-
36- # CTC
37- config . ctc_soft_launch = Time . find_zone ( "America/New_York" ) . parse ( "2022-03-01 09:00:00" )
38- config . ctc_full_launch = Time . find_zone ( "America/New_York" ) . parse ( "2022-04-01 09:00:00" )
39-
40- # StateFile
41- config . state_file_start_of_open_intake = Time . find_zone ( 'America/New_York' ) . parse ( '2024-01-01 7:59:59' )
42-
43- # Keep FYST 'open' until the end of 2040 ^_^
44- # use the session toggles if you want to emulate/test 'closed' behaviors
45- # use the year "2040" to test what it looks like between these milestones
46- the_earlier_future = Time . find_zone ( 'America/New_York' ) . parse ( '2039-12-31 23:59:59' )
47- the_further_future = Time . find_zone ( 'America/New_York' ) . parse ( '2040-12-31 23:59:59' )
48- config . state_file_end_of_new_intakes = the_earlier_future
49- config . state_file_end_of_in_progress_intakes = the_further_future
5035end
Original file line number Diff line number Diff line change 134134 config . gyr_url = "http://localhost:3000"
135135 config . efile_environment = "test"
136136
137- # CTC
138- config . ctc_soft_launch = Time . find_zone ( "America/New_York" ) . parse ( "2022-03-01 09:00:00" )
139- config . ctc_full_launch = Time . find_zone ( "America/New_York" ) . parse ( "2022-04-01 09:00:00" )
140-
141- # StateFile
142- config . state_file_start_of_open_intake = Time . find_zone ( 'America/New_York' ) . parse ( '2024-01-01 7:59:59' )
143-
144- # Keep GYR and FYST 'open' until the end of 2040 ^_^
145- # use the session toggles if you want to emulate/test 'closed' behaviors
146- # use the year "2040" to test what it looks like between these milestones
147- the_earlier_future = Time . find_zone ( 'America/New_York' ) . parse ( '2039-12-31 23:59:59' )
148- the_further_future = Time . find_zone ( 'America/New_York' ) . parse ( '2040-12-31 23:59:59' )
149- config . end_of_intake = the_further_future
150- config . state_file_end_of_new_intakes = the_earlier_future
151- config . state_file_end_of_in_progress_intakes = the_further_future
137+ # Keep GYR 'open' until the end of 2040 ^_^
138+ the_future = Time . find_zone ( 'America/New_York' ) . parse ( '2040-12-31 23:59:59' )
139+ config . end_of_intake = the_future
152140end
Original file line number Diff line number Diff line change 3939 config . efile_environment = "test"
4040 config . google_login_enabled = ( ENV [ 'GOOGLE_LOGIN_ENABLED' ] == 'true' )
4141
42- # StateFile
43- config . state_file_start_of_open_intake = Time . find_zone ( 'America/New_York' ) . parse ( '2024-01-01 7:59:59' )
44-
45- # Keep GYR and FYST 'open' until the end of 2040 ^_^
46- # use the session toggles if you want to emulate/test 'closed' behaviors
47- # use the year "2040" to test what it looks like between these milestones
48- the_earlier_future = Time . find_zone ( 'America/New_York' ) . parse ( '2039-12-31 23:59:59' )
49- the_further_future = Time . find_zone ( 'America/New_York' ) . parse ( '2040-12-31 23:59:59' )
50- config . end_of_intake = the_further_future
51- config . state_file_end_of_new_intakes = the_earlier_future
52- config . state_file_end_of_in_progress_intakes = the_further_future
42+ # Keep GYR 'open' until the end of 2040 ^_^
43+ the_future = Time . find_zone ( 'America/New_York' ) . parse ( '2040-12-31 23:59:59' )
44+ config . end_of_intake = the_future
5345end
Original file line number Diff line number Diff line change 3333 Rails . application . default_url_options = config . action_mailer . default_url_options
3434 config . efile_environment = "test"
3535
36- # StateFile
37- config . state_file_start_of_open_intake = Time . find_zone ( 'America/New_York' ) . parse ( '2024-01-01 7:59:59' )
38-
39- # Keep GYR and FYST 'open' until the end of 2040 ^_^
40- # use the session toggles if you want to emulate/test 'closed' behaviors
41- # use the year "2040" to test what it looks like between these milestones
42- the_earlier_future = Time . find_zone ( 'America/New_York' ) . parse ( '2039-12-31 23:59:59' )
43- the_further_future = Time . find_zone ( 'America/New_York' ) . parse ( '2040-12-31 23:59:59' )
44- config . end_of_intake = the_further_future
45- config . state_file_end_of_new_intakes = the_earlier_future
46- config . state_file_end_of_in_progress_intakes = the_further_future
36+ # Keep GYR 'open' until the end of 2040 ^_^
37+ the_future = Time . find_zone ( 'America/New_York' ) . parse ( '2040-12-31 23:59:59' )
38+ config . end_of_intake = the_future
4739end
You can’t perform that action at this time.
0 commit comments