Remove sentry and error reporting

This commit is contained in:
Jamie Curnow
2023-07-20 15:19:42 +10:00
parent 6d6021c9bb
commit fd7095ad88
18 changed files with 26 additions and 144 deletions

View File

@ -30,14 +30,6 @@ INSERT INTO `setting` (
`description`,
`value`
) VALUES
-- Default error reporting setting
(
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),
"error-reporting",
"If enabled, any application errors are reported to Sentry. Sensitive information is not sent.",
"true" -- remember this is json
),
-- Default site
(
ROUND(UNIX_TIMESTAMP(CURTIME(4)) * 1000),

View File

@ -30,14 +30,6 @@ INSERT INTO "setting" (
"description",
"value"
) VALUES
-- Default error reporting setting
(
EXTRACT(EPOCH FROM TIMESTAMP '2011-05-17 10:40:28.876944') * 1000,
EXTRACT(EPOCH FROM TIMESTAMP '2011-05-17 10:40:28.876944') * 1000,
'error-reporting',
'If enabled, any application errors are reported to Sentry. Sensitive information is not sent.',
'true' -- remember this is json
),
-- Default site
(
EXTRACT(EPOCH FROM TIMESTAMP '2011-05-17 10:40:28.876944') * 1000,

View File

@ -23,21 +23,6 @@ INSERT INTO `capability` (
("streams.manage"),
("users.manage");
-- Default error reporting setting
INSERT INTO `setting` (
created_at,
updated_at,
name,
description,
value
) VALUES (
unixepoch() * 1000,
unixepoch() * 1000,
"error-reporting",
"If enabled, any application errors are reported to Sentry. Sensitive information is not sent.",
"true" -- remember this is json
);
-- Default site
INSERT INTO `setting` (
created_at,