mirror of
https://github.com/wekan/wekan.git
synced 2026-03-08 06:32:34 +01:00
add custom css
This commit is contained in:
parent
3d70de94c6
commit
68d9653eb7
7 changed files with 73 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue