Skip to content

Commit

Permalink
update school start and end dates
Browse files Browse the repository at this point in the history
  • Loading branch information
julia7hk committed Aug 1, 2023
1 parent 30b8c5d commit a1dca9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/data/schedule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import {DateTime} from 'luxon';
// names, like "ELA CAT", remain unparsed.
export type PeriodObj = {n: string, s: number, e: number, note?: string, grades?: number[]};

export const SCHOOL_START = DateTime.fromISO('2022-08-10', {zone: 'America/Los_Angeles'});
export const SCHOOL_END = DateTime.fromISO('2023-06-01', {zone: 'America/Los_Angeles'});
export const SCHOOL_END_EXCLUSIVE = DateTime.fromISO('2023-06-02', {zone: 'America/Los_Angeles'});
export const SCHOOL_START = DateTime.fromISO('2023-08-09', {zone: 'America/Los_Angeles'});
export const SCHOOL_END = DateTime.fromISO('2024-05-30', {zone: 'America/Los_Angeles'});
export const SCHOOL_END_EXCLUSIVE = DateTime.fromISO('2024-06-01', {zone: 'America/Los_Angeles'});

const schedule: {[key: string]: PeriodObj[]} = {
"M": [
Expand Down

0 comments on commit a1dca9d

Please sign in to comment.