-
Notifications
You must be signed in to change notification settings - Fork 5
Merging in Login into Main ER Branch #529
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
Merged
brian-montgomery
merged 53 commits into
nathan/escape-room-subsite-ordering
from
brian/escape-room-login
Apr 16, 2026
Merged
Changes from all commits
Commits
Show all changes
53 commits
Select commit
Hold shift + click to select a range
cbcd2b2
Add accessible help for time zone selection (#460)
shlokmestry de9d350
Add workshops page to mutua11y (#478)
courtneylinder a1bf690
Good news blog Jan 2026 (#480)
rachaelbradley 9bca4a7
Astro and Plausible updates (#483)
brian-montgomery 450f0d8
Issue #484: Post-netlify move cleanup (#486)
brian-montgomery 72a2df4
Merge branch 'main' into brian/escape-room-login
brian-montgomery 22e0ae4
In progress Auth and DB integration
brian-montgomery 3591983
Forcing on static pages.
brian-montgomery e2e2967
Integrating `better-auth` with `drizzle` and prototype Escape Room
brian-montgomery b42f8b4
Add markdown definition list support
brian-montgomery 95d8472
Revived Kit Page
brian-montgomery e3f10c3
Bump rollup in /astro in the npm_and_yarn group across 1 directory (#…
dependabot[bot] 3a90aa1
Merge branch 'main' into brian/escape-room-login
brian-montgomery 9691450
Bump the npm_and_yarn group across 1 directory with 2 updates (#488)
dependabot[bot] 5a5ee3c
Merge branch 'main' into brian/escape-room-login
brian-montgomery 4b47236
Update to navigation capabilities and theme coloring on Escape Rooms.
brian-montgomery a067f6a
Small fixes
brian-montgomery 6c20006
Added two blogs by Amanda (#485)
aluevano859 db87965
DAF Town Hall agenda March 2026 (#506)
michael-n-cooper 5e0432d
Issue #469: Use Atkinson Hyperlegible Next Variable font. (#508)
alexisreytech 883b1be
Bump the npm_and_yarn group across 1 directory with 1 update (#494)
dependabot[bot] 8474567
Bump the npm_and_yarn group across 1 directory with 2 updates (#509)
dependabot[bot] ae61252
Bump devalue in /astro in the npm_and_yarn group across 1 directory (…
dependabot[bot] e450548
Added Good News blog for February (#512)
rachaelbradley ea90f86
Bump undici in /astro in the npm_and_yarn group across 1 directory (#…
dependabot[bot] 2a322fb
Added 'Designing for Everyone' blog article (#513)
rachaelbradley 209a526
Added Autism Podcast blog (#514)
rachaelbradley 10f7d5c
Added react-email and react renderer
brian-montgomery 11273c2
Implemented initial email with Resend
brian-montgomery 359dca9
Bump h3 in /astro in the npm_and_yarn group across 1 directory (#516)
dependabot[bot] 82818d6
Bump h3 in /astro in the npm_and_yarn group across 1 directory (#518)
dependabot[bot] ffead40
Update content for Evaluations page. (#507)
alexisreytech e40d1e7
Update mentor and protegé form look and feel + Add 1 checkbox group (…
alexisreytech fb38452
Bump smol-toml in /astro in the npm_and_yarn group across 1 directory…
dependabot[bot] eab5841
Add login page.
brian-montgomery 6a30a38
Issue #405: Update breadcrumb divider to have empty alt text for its …
alexisreytech 42345d6
Bump the npm_and_yarn group across 1 directory with 3 updates (#525)
dependabot[bot] 8ceee8c
Issue #521: Update contributors on team and podcast pages (#522)
rachaelbradley 9767569
Security updates
brian-montgomery 5fcd4e4
Domain update
brian-montgomery afd5a9b
Add 'Accessibility in Practice' blog (#527)
rachaelbradley 79871f6
Merge branch 'main' into brian/escape-room-login
brian-montgomery 8fca25a
DAF Town Hall: April 2026 (#530)
michael-n-cooper 9e0c6c9
Issue #520: Make main skip link and nav links visible in dark mode. (…
alexisreytech 35e013b
Bump the npm_and_yarn group across 1 directory with 2 updates (#526)
dependabot[bot] 258e5a7
Security update for `lodash-es` to 4.18.x (#532)
brian-montgomery 9ec0e41
Issue #430: Created `Column` and `ThemedColumn` components. (#535)
alexisreytech d50975c
Issue #426: Componentize image card (#427)
ashimupd dfa9892
march good news article
rachaelbradley 1ac7a16
Revert previous commit (#539)
brian-montgomery 7235f03
Issue #531: Update "ThemedSection" component to responsively reduce v…
alexisreytech 25ffb88
March "Good News" Blog (#540)
rachaelbradley 755b3aa
Merge branch 'main' into brian/escape-room-login
brian-montgomery File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,53 @@ | ||
| CREATE TABLE "account" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "account_id" text NOT NULL, | ||
| "provider_id" text NOT NULL, | ||
| "user_id" text NOT NULL, | ||
| "access_token" text, | ||
| "refresh_token" text, | ||
| "id_token" text, | ||
| "access_token_expires_at" timestamp, | ||
| "refresh_token_expires_at" timestamp, | ||
| "scope" text, | ||
| "password" text, | ||
| "created_at" timestamp DEFAULT now() NOT NULL, | ||
| "updated_at" timestamp NOT NULL | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "session" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "expires_at" timestamp NOT NULL, | ||
| "token" text NOT NULL, | ||
| "created_at" timestamp DEFAULT now() NOT NULL, | ||
| "updated_at" timestamp NOT NULL, | ||
| "ip_address" text, | ||
| "user_agent" text, | ||
| "user_id" text NOT NULL, | ||
| CONSTRAINT "session_token_unique" UNIQUE("token") | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "user" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "name" text NOT NULL, | ||
| "email" text NOT NULL, | ||
| "email_verified" boolean DEFAULT false NOT NULL, | ||
| "image" text, | ||
| "created_at" timestamp DEFAULT now() NOT NULL, | ||
| "updated_at" timestamp DEFAULT now() NOT NULL, | ||
| CONSTRAINT "user_email_unique" UNIQUE("email") | ||
| ); | ||
| --> statement-breakpoint | ||
| CREATE TABLE "verification" ( | ||
| "id" text PRIMARY KEY NOT NULL, | ||
| "identifier" text NOT NULL, | ||
| "value" text NOT NULL, | ||
| "expires_at" timestamp NOT NULL, | ||
| "created_at" timestamp DEFAULT now() NOT NULL, | ||
| "updated_at" timestamp DEFAULT now() NOT NULL | ||
| ); | ||
| --> statement-breakpoint | ||
| ALTER TABLE "account" ADD CONSTRAINT "account_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint | ||
| ALTER TABLE "session" ADD CONSTRAINT "session_user_id_user_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."user"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint | ||
| CREATE INDEX "account_userId_idx" ON "account" USING btree ("user_id");--> statement-breakpoint | ||
| CREATE INDEX "session_userId_idx" ON "session" USING btree ("user_id");--> statement-breakpoint | ||
| CREATE INDEX "verification_identifier_idx" ON "verification" USING btree ("identifier"); | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need created by/updated by fields?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the automatic schema generated by
better-auth. We didn't write this one.