-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tracking New TEC Requirements (#845)
### Summary <!-- Required --> This pull requests implements the new TEC requirements in IDOL's submit TEC page. It prevents members from submitting a TEC if they already submitted one in the current 5-week period, unless they missed the last period or they are a lead. ### Notion/Figma Link [https://www.notion.so/Track-new-TEC-requirements-1950ad723ce180e8b18df88a3d7f0388](https://www.notion.so/Track-new-TEC-requirements-1950ad723ce180e8b18df88a3d7f0388) ### Test Plan https://github.com/user-attachments/assets/de0f8025-5b54-4c30-a24b-89dc25313d18
- Loading branch information
1 parent
b1c7af0
commit 2bbdf01
Showing
3 changed files
with
106 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
export const REQUIRED_INITIATIVE_CREDITS = 1; | ||
export const REQUIRED_MEMBER_TEC_CREDITS = 3; | ||
export const REQUIRED_LEAD_TEC_CREDITS = 6; | ||
export const TEC_DEADLINES = [ | ||
new Date('2025-02-23'), | ||
new Date('2025-03-30'), | ||
new Date('2025-05-11') | ||
]; | ||
export const MAX_TEC_PER_5_WEEKS = 1; | ||
export const ALL_STATUS: Status[] = ['approved', 'pending', 'rejected']; | ||
export const INITIATIVE_EVENTS = false; | ||
export const ENABLE_COFFEE_CHAT = true; |