mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-12 01:38:36 +08:00
Add custom html code to head
With this PR a new text field will be added that allows setting custom html code to the `<head>` of a status page. The implementation will be similar to https://github.com/louislam/uptime-kuma/pull/2567/files, but with a multi-line text field and without escaping any special chars. For security reasons the env var `UPTIME_KUMA_ALLOW_CUSTOM_HTML` must be set to `1` to enable this feature. This will allow tracking with most analytic platforms and has been requested several times. Closes #2818
This commit is contained in:
committed by
Frank Elsinga
parent
10ebdcacaa
commit
7f0d3a3043
14
db/knex_migrations/2023-10-13-1200-add-custom-html.js
Normal file
14
db/knex_migrations/2023-10-13-1200-add-custom-html.js
Normal file
@@ -0,0 +1,14 @@
|
||||
exports.up = function (knex) {
|
||||
// Insert column for custom HTML code
|
||||
return knex.schema
|
||||
.alterTable("status_page", function (table) {
|
||||
table.text("custom_html").nullable().defaultTo(null);
|
||||
});
|
||||
};
|
||||
|
||||
exports.down = function (knex) {
|
||||
return knex.schema
|
||||
.alterTable("status_page", function (table) {
|
||||
table.dropColumn("custom_html");
|
||||
});
|
||||
};
|
Reference in New Issue
Block a user