Add account hierarchy framework with migrations, RLS policies, and UI components

This commit is contained in:
T. Zehetbauer
2026-03-31 22:18:04 +02:00
parent 7e7da0b465
commit 59546ad6d2
262 changed files with 11671 additions and 3927 deletions

View File

@@ -22,10 +22,9 @@ export function initializeSentryBrowserClient(
// https://docs.sentry.io/platforms/javascript/configuration/integrations/
],
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
// We recommend adjusting this value in production
tracesSampleRate: props?.tracesSampleRate ?? 1.0,
// Capture 20% of transactions for performance monitoring.
// Increase for debugging, decrease for high-traffic production.
tracesSampleRate: props?.tracesSampleRate ?? 0.2,
// Capture Replay for 10% of all sessions,
// plus for 100% of sessions with an error

View File

@@ -17,7 +17,9 @@ export function initializeSentryServerClient(
return init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
// ...
// Capture 20% of transactions for performance monitoring.
// Increase for debugging, decrease for high-traffic production.
tracesSampleRate: 0.2,
// Note: if you want to override the automatic release value, do not set a
// `release` value here - use the environment variable `SENTRY_RELEASE`, so