Skip to content

Commit

Permalink
Sort of update settings.ts for 23-24 school year
Browse files Browse the repository at this point in the history
  • Loading branch information
insberr authored Jul 26, 2023
1 parent 4834183 commit d59013e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/config/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const scheduleConfigs = {
],
};

export const lastDayOfSchool = new Date('June 23, 2023 23:59');
export const lastDayOfSchool = new Date('June 23, 2024 23:59');
// Terms
// This is also used to determine the number of terms in the school year
// This valuse is REQUIRED else there will be an error
Expand All @@ -97,17 +97,17 @@ export const lastDayOfSchool = new Date('June 23, 2023 23:59');
export const termsDates: types.Terms = [
{
termIndex: 0,
startDate: new Date('September 6, 2022'),
endDate: new Date('December 6, 2022'),
startDate: new Date('August 30, 2023'),
endDate: new Date('December 6, 2023'),
classes: [],
},
{
termIndex: 1,
startDate: new Date('December 8, 2022'),
endDate: new Date('March 23, 2023'),
startDate: new Date('December 8, 2023'),
endDate: new Date('March 23, 2024'),
classes: [],
},
{ termIndex: 2, startDate: new Date('March 24, 2023'), endDate: lastDayOfSchool, classes: [] },
{ termIndex: 2, startDate: new Date('March 24, 2024'), endDate: lastDayOfSchool, classes: [] },
];

const defaultColor: types.RGBA = {
Expand Down

0 comments on commit d59013e

Please sign in to comment.