Skip to content
This repository has been archived by the owner on Nov 21, 2024. It is now read-only.

Commit

Permalink
FS-3970: Add flag allocation teams cof r3w2 (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
tferns authored Jan 10, 2024
1 parent 51f5c0a commit 56cea53
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ def get_available_flag_allocations(fund_id, round_id):
from config.fund_loader_config.cof.cof_r3 import COF_FUND_ID
from config.fund_loader_config.cof.cof_r2 import COF_ROUND_2_WINDOW_2_ID
from config.fund_loader_config.cof.cof_r2 import COF_ROUND_2_WINDOW_3_ID
from config.fund_loader_config.cof.cof_r3 import COF_ROUND_3_WINDOW_3_ID
from config.fund_loader_config.night_shelter.ns_r2 import NIGHT_SHELTER_ROUND_2_ID
from config.fund_loader_config.night_shelter.ns_r2 import NIGHT_SHELTER_FUND_ID
from config.fund_loader_config.cyp.cyp_r1 import CYP_FUND_ID, CYP_ROUND_1_ID
Expand Down Expand Up @@ -193,6 +194,8 @@ def get_available_flag_allocations(fund_id, round_id):
return cof_teams
elif fund_id == COF_FUND_ID and round_id == COF_ROUND_3_WINDOW_2_ID:
return cof_teams
elif fund_id == COF_FUND_ID and round_id == COF_ROUND_3_WINDOW_3_ID:
return cof_teams
elif fund_id == NIGHT_SHELTER_FUND_ID and round_id == NIGHT_SHELTER_ROUND_2_ID:
return nstf_teams
elif fund_id == CYP_FUND_ID and round_id == CYP_ROUND_1_ID:
Expand Down

0 comments on commit 56cea53

Please sign in to comment.