Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 2025-2026 cycle dates #114

Merged
merged 3 commits into from
Sep 9, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions lib/dfe/reference_data/itt/cycles.rb
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,18 @@ def self.make_local_time(*args)
christmas: Date.new(2024, 12, 16)..Date.new(2025, 1, 3),
easter: Date.new(2025, 4, 7)..Date.new(2025, 4, 21)
}
},
'2025-2026' => {
find_opens: make_local_time(2025, 10, 7, 9), # First Tuesday of October
apply_opens: make_local_time(2024, 10, 14, 9), # Second Tuesday of October
apply_1_deadline: nil, # This deadline is not applicable for this cycle
apply_2_deadline: make_local_time(2026, 9, 22, 18), # 3rd Tuesday in September
ericaporter marked this conversation as resolved.
Show resolved Hide resolved
provider_decision_deadline: make_local_time(2026, 9, 30, 23, 59, 59), # 1 week and a day after Apply 2 deadline
find_closes: make_local_time(2026, 10, 5, 23, 59, 59), # The evening before the find opens in the new cycle
ericaporter marked this conversation as resolved.
Show resolved Hide resolved
non_working_days: {
christmas: Date.new(2025, 12, 22)..Date.new(2026, 1, 2),
easter: Date.new(2026, 3, 30)..Date.new(2026, 4, 10)
}
}
},
schema: CYCLES_SCHEMA,
Expand Down
Loading