nxtgauge-backend-rust/apps
Ashwin Kumar Sivakumar 77c8330b11
All checks were successful
build-and-release / build (catering-services) (push) Successful in 1m28s
build-and-release / build (cron) (push) Successful in 1m51s
build-and-release / build (companies) (push) Successful in 2m7s
build-and-release / build (customers) (push) Successful in 2m54s
build-and-release / build (developers) (push) Successful in 1m39s
build-and-release / build (fitness-trainers) (push) Successful in 1m39s
build-and-release / build (gateway) (push) Successful in 1m31s
build-and-release / build (jobs) (push) Successful in 42s
build-and-release / build (employees) (push) Successful in 2m22s
build-and-release / build (graphic-designers) (push) Successful in 2m8s
build-and-release / build (makeup-artists) (push) Successful in 1m58s
build-and-release / build (payments) (push) Successful in 1m48s
build-and-release / build (job-seekers) (push) Successful in 3m4s
build-and-release / build (social-media-managers) (push) Successful in 2m39s
build-and-release / build (photographers) (push) Successful in 2m42s
backend-integration-tests / ai-credits (push) Successful in 50s
build-and-release / build (tutors) (push) Successful in 3m4s
build-and-release / build (ugc-content-creators) (push) Successful in 2m44s
build-and-release / build (video-editors) (push) Successful in 2m43s
build-and-release / build (users) (push) Successful in 4m38s
feat(waitlist): POST /api/waitlist for the nxtgauge.com coming-soon form
The coming-soon page's 'Notify Me' form (nxtgauge-gitops/coming-soon/
index.html) only console.logged the email - nothing was actually
captured. Adds a public (no auth, same trust model as a newsletter
signup) endpoint on the users service:

- New waitlist_signups table (email unique, created_at) - no user_id/
  FK since these are anonymous pre-launch signups, not necessarily
  existing accounts.
- apps/users/src/handlers/waitlist.rs: POST / -> INSERT ... ON
  CONFLICT DO NOTHING (repeat signups from the same email are a no-op,
  not an error), loose email validation (has @ and a dotted domain -
  this is a marketing signup, not an account, so overly strict
  validation just loses real signups to minor typos).
- Routed /api/waitlist through the gateway to the users service,
  alongside the other public routes (packages, kb, etc.)

Applied migration to nxtgauge_test and prod.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-14 03:46:28 +05:30
..
catering_services Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
companies fix: return JSON errors from create_job and add admin job-slot grant endpoint 2026-08-03 17:04:00 +05:30
cron fix: security, wallet holds, printpdf upgrade 2026-08-12 13:38:17 +02:00
customers Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
developers Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
employees Fix security audit findings: admin authz, captcha, secret leak, CORS 2026-07-23 17:31:48 +05:30
fitness_trainers Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
gateway feat(waitlist): POST /api/waitlist for the nxtgauge.com coming-soon form 2026-08-14 03:46:28 +05:30
graphic_designers Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
job_seekers fix: security, wallet holds, printpdf upgrade 2026-08-12 13:38:17 +02:00
jobs Fix security audit findings: admin authz, captcha, secret leak, CORS 2026-07-23 17:31:48 +05:30
makeup_artists Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
payments feat(invoices): generate GST invoices for AI credit purchases 2026-08-14 03:17:17 +05:30
photographers Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
social_media_managers Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
tutors Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
ugc_content_creators Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30
users feat(waitlist): POST /api/waitlist for the nxtgauge.com coming-soon form 2026-08-14 03:46:28 +05:30
video_editors Surface real B2 upload errors and enforce 10MB body limit on document uploads 2026-07-26 19:25:53 +05:30