Feature/event rsvp calendar - #30
Merged
Merged
Conversation
- ArmorEvents.js fetches upcoming events from a public Google Calendar via the Calendar REST API; merges with hardcoded past-event list and deduplicates by title so no event appears twice - EVENT_ROUTE_MAP maps calendar event titles to internal routes/images for events that have dedicated community pages (e.g. World Cup Party) - Calendar events without a dedicated page link to the Google Calendar event; custom image supported via "image: /path" first line in description - Updated API key across all 6 Sheets-powered components to a new key with both Sheets and Calendar APIs enabled Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…website - scripts/create-event.gs: Google Apps Script web app that accepts event data (title, description, start/end, location, imagePath) and creates the event in the Anote community calendar via CalendarApp service - CreateEventAdmin.js: internal-only form at /community/admin/create-event that POSTs to the Apps Script; event appears on the events page automatically - Wired route and import into Main.js; added communityCreateEventPath constant Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- ArmorEvents.js: new Calendar View toggle shows the Anote community Google Calendar embedded as an agenda iframe; Cards/Calendar toggle sits alongside the existing All/Upcoming/Past filter tabs - scripts/sync-events-to-calendar.js: one-time Node.js script that POSTs upcoming hardcoded events (with startISO/endISO) to the Apps Script to create them in Google Calendar; World Cup Party already synced Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What this PR does
Builds out the full events and calendar infrastructure for the community portal.
Changes
Calendar export (EventActions.js)
Automated reminder emails (scripts/event-reminders.gs)
emails at 1 week, 1 day, and 1 hour before each event
Live Google Calendar feed (ArmorEvents.js)
Calendar embed (ArmorEvents.js)
as an agenda view directly on the events page
Admin event creation (CreateEventAdmin.js + create-event.gs)
Event sync script (scripts/sync-events-to-calendar.js)
the Google Calendar — World Cup Party already synced
API key update