mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 20:46:40 -04:00
9 lines
442 B
JavaScript
9 lines
442 B
JavaScript
![]() |
import { registerSetting } from 'meteor/vulcan:core';
|
||
|
|
||
|
export const clientDSNSetting = 'sentry.clientDSN';
|
||
|
export const serverDSNSetting = 'sentry.serverDSN';
|
||
|
export const tokensUrl = 'https://sentry.io/onboarding/{account}/{project}/configure/node';
|
||
|
|
||
|
registerSetting(clientDSNSetting, null, `Sentry client DSN access token (from ${tokensUrl})`);
|
||
|
registerSetting(serverDSNSetting, null, `Sentry client DSN access token (from ${tokensUrl})`);
|