mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-06-18 10:06:26 +00:00
Remove sentry and error reporting
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
"type": "object",
|
||||
"description": "HealthObject",
|
||||
"additionalProperties": false,
|
||||
"required": ["version", "commit", "healthy", "setup", "error_reporting"],
|
||||
"required": ["version", "commit", "healthy", "setup"],
|
||||
"properties": {
|
||||
"version": {
|
||||
"type": "string",
|
||||
@ -22,10 +22,6 @@
|
||||
"type": "boolean",
|
||||
"description": "Is the application set up?"
|
||||
},
|
||||
"error_reporting": {
|
||||
"type": "boolean",
|
||||
"description": "Will the application send any error reporting?"
|
||||
},
|
||||
"acme.sh": {
|
||||
"type": "string",
|
||||
"description": "Acme.sh version",
|
||||
|
@ -22,8 +22,7 @@
|
||||
"version": "3.0.0",
|
||||
"commit": "9f119b6",
|
||||
"healthy": true,
|
||||
"setup": true,
|
||||
"error_reporting": true
|
||||
"setup": true
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -33,8 +32,7 @@
|
||||
"version": "3.0.0",
|
||||
"commit": "9f119b6",
|
||||
"healthy": false,
|
||||
"setup": true,
|
||||
"error_reporting": true
|
||||
"setup": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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),
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
Reference in New Issue
Block a user