Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
9666b38
add tally onboarding intake workflow
michaelmwu Jun 12, 2026
e7e048e
address tally intake review feedback
michaelmwu Jun 13, 2026
1a4a979
Merge remote-tracking branch 'origin/main' into michaelmwu/google-for…
michaelmwu Jun 13, 2026
00cf41c
address intake review followups
michaelmwu Jun 13, 2026
229cfc7
normalize tally names and github links
michaelmwu Jun 13, 2026
b05d879
separate tally chat availability
michaelmwu Jun 14, 2026
1218441
avoid placeholder intake last names in crm
michaelmwu Jun 14, 2026
7b8a82f
surface orphan intake submissions
michaelmwu Jun 15, 2026
a0f881f
Merge remote-tracking branch 'origin/main' into michaelmwu/google-for…
michaelmwu Jun 15, 2026
543d16b
harden orphan intake handling
michaelmwu Jun 15, 2026
cae1263
tighten onboarding intake review queue
michaelmwu Jun 15, 2026
4cac543
address intake safety review followups
michaelmwu Jun 18, 2026
6e1a16b
Merge remote-tracking branch 'origin/main' into michaelmwu/google-for…
michaelmwu Jun 26, 2026
96ec255
align intake resume display with filters
michaelmwu Jun 26, 2026
fe73906
Add Tally intake worker dry run
michaelmwu Jun 28, 2026
2173ff3
Upload intake resumes to CRM
michaelmwu Jun 28, 2026
672ddbf
Address intake review followups
michaelmwu Jun 28, 2026
146e447
Harden intake ordering and resume logging
michaelmwu Jun 28, 2026
3135694
Merge remote-tracking branch 'origin/main' into michaelmwu/google-for…
michaelmwu Jun 28, 2026
3ca55be
Fix intake dashboard query typing
michaelmwu Jun 28, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,19 @@ INTAKE_RESUME_FETCH_TIMEOUT_SECONDS=20.0
INTAKE_RESUME_MAX_REDIRECTS=3
# Optional comma-separated host allowlist for intake resume URL fetches
INTAKE_RESUME_ALLOWED_HOSTS=
# Onboarding Tally intake webhooks. ONBOARDING_TALLY_API_KEY is optional for
# future API backfills; webhook submissions use the signing secret for auth.
# Legacy aliases still work: TALLY_API_KEY, TALLY_WEBHOOK_SIGNING_SECRET,
# TALLY_ALLOWED_FORM_IDS.
ONBOARDING_TALLY_API_KEY=
ONBOARDING_TALLY_WEBHOOK_SIGNING_SECRET=
# Required for Tally webhook intake; comma-separated accepted onboarding form IDs.
ONBOARDING_TALLY_ALLOWED_FORM_IDS=
# Resume files are untrusted. Keep scanning required in production and configure
# a scanner command; use "{path}" where the downloaded resume path should go.
INTAKE_RESUME_REQUIRE_VIRUS_SCAN=false
INTAKE_RESUME_VIRUS_SCAN_COMMAND=
INTAKE_RESUME_VIRUS_SCAN_TIMEOUT_SECONDS=30.0
EMAIL_RESUME_INTAKE_ENABLED=false
EMAIL_RESUME_ALLOWED_EXTENSIONS=pdf,doc,docx
EMAIL_RESUME_MAX_FILE_SIZE_MB=10
Expand Down
Loading