feat(status-page): add customCSS field to StatusPage model

This commit is contained in:
mohadeseh safari
2025-08-03 18:51:12 -04:00
parent 0de9e067c6
commit 45352b62e1
+4
View File
@@ -74,6 +74,10 @@ const StatusPageSchema = mongoose.Schema(
type: Boolean,
default: false,
},
customCSS: {
type: String,
default: "",
},
},
{ timestamps: true }
);