Merge pull request #482 from ateuber/custom_field_description
Custom field description
This commit is contained in:
commit
fa1bf1c874
8 changed files with 45 additions and 7 deletions
|
@ -419,6 +419,7 @@ router.post('/field/:listId', (req, res) => {
|
|||
|
||||
let field = {
|
||||
name: (input.NAME || '').toString().trim(),
|
||||
description: (input.DESCRIPTION || '').toString().trim(),
|
||||
defaultValue: (input.DEFAULT || '').toString().trim() || null,
|
||||
type: (input.TYPE || '').toString().toLowerCase().trim(),
|
||||
group: Number(input.GROUP) || null,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue