0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

Added color as an allowed setting type

refs https://github.com/TryGhost/Team/issues/1107

- updated schema validation to allow `'color'` through as a known setting type now
This commit is contained in:
Kevin Ansfield 2021-10-14 10:37:16 +01:00
parent 78d322b935
commit adb176f5b2

View file

@ -679,7 +679,8 @@ module.exports = {
validations: {
isIn: [[
'select',
'boolean'
'boolean',
'color'
]]
}
},