add custom css

This commit is contained in:
lasseveenliese 2025-12-03 19:56:10 +01:00
parent 3d70de94c6
commit 68d9653eb7
7 changed files with 73 additions and 1 deletions

View file

@ -85,6 +85,14 @@ Settings.attachSchema(
type: String,
optional: true,
},
customCssUrl: {
type: String,
optional: true,
},
customCss: {
type: String,
optional: true,
},
textBelowCustomLoginLogo: {
type: String,
optional: true,
@ -202,6 +210,8 @@ if (Meteor.isServer) {
modifiedAt: now,
displayAuthenticationMethod: true,
defaultAuthenticationMethod: 'password',
customCssUrl: '',
customCss: '',
};
Settings.insert(defaultSetting);
}