feat: add rss title field and handle rss link from request

This commit is contained in:
leonace924
2026-01-06 00:15:53 -05:00
parent 90fcbdc7d7
commit ac87fa1969
7 changed files with 87 additions and 16 deletions
+1
View File
@@ -202,6 +202,7 @@ async function createTables() {
table.text("footer_text");
table.text("custom_css");
table.boolean("show_powered_by").notNullable().defaultTo(true);
table.string("rss_title", 255);
table.string("google_analytics_tag_id");
});
@@ -0,0 +1,12 @@
exports.up = function (knex) {
return knex.schema
.alterTable("status_page", function (table) {
table.string("rss_title", 255);
});
};
exports.down = function (knex) {
return knex.schema.alterTable("status_page", function (table) {
table.dropColumn("rss_title");
});
};