mirror of
https://github.com/FranP-code/inbox-negotiator.git
synced 2025-10-13 00:42:26 +00:00
- Updated Navbar component to include a link to the configuration page. - Added a new Settings icon and link for user configuration. - Improved user session handling and UI updates based on authentication state. feat: implement OnboardingDialog for user setup - Created OnboardingDialog component to guide users through initial setup. - Added functionality to collect additional email addresses during onboarding. - Integrated toast notifications for error handling during email addition. feat: extend Supabase admin functions for user management - Added functions to retrieve user IDs and full user information by email. - Implemented error handling and logging for database operations. feat: update Supabase schema with new user features - Created new tables: user_profiles, additional_emails, and email_processing_usage. - Enabled Row Level Security (RLS) on new tables with appropriate policies. - Added triggers and functions for automatic user profile creation and email usage tracking. feat: create public users table for simplified access - Established a public.users table to mirror relevant auth.users data. - Implemented triggers to automatically populate public.users upon user creation. - Set up RLS policies to restrict access to user data. chore: add configuration files for Supabase local development - Included .gitignore and config.toml for local Supabase setup. - Configured email testing server and other development settings. feat: add configuration page for user settings - Created configuration.astro page to manage user settings. - Integrated AuthGuard to protect the configuration route.
30 lines
612 B
Plaintext
30 lines
612 B
Plaintext
meta {
|
|
name: /api/postmark (localhost:4321)
|
|
type: http
|
|
seq: 2
|
|
}
|
|
|
|
post {
|
|
url: http://localhost:4321/api/postmark
|
|
body: json
|
|
auth: none
|
|
}
|
|
|
|
body:json {
|
|
{
|
|
"TextBody": "Dear customer, you owe $1,250.50 to CreditPlus for your January utility bills. Please pay by 2025-06-15 to avoid penalties.",
|
|
"FromFull": {
|
|
"Email": "billing@creditplus.com",
|
|
"Name": "CreditPlus Billing Department"
|
|
},
|
|
"ToFull": [
|
|
{
|
|
"Email": "franpessano1@gmail.com",
|
|
"Name": "",
|
|
"MailboxHash": "ahoy"
|
|
}
|
|
],
|
|
"Subject": "Outstanding Utility Bill Payment Due"
|
|
}
|
|
}
|