You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- Insert a test notification directly into the database
-- This bypasses the API endpoint routing issue
INSERT INTO notifications (
id,
"userId",
subject,
body,
tags,
priority,
source,
"readStatus",
"createdAt",
"updatedAt"
) VALUES (
gen_random_uuid(),
'test-user-id', -- Replace with actual user ID if you have one
'Test Notification from Cascade AI - Direct Database Insert',
'This is a test notification inserted directly into the PostgreSQL database to verify the notifications system is working correctly. The UI should display this notification!',