spleenboy / pallium-cms

Pallium CMS is a node.js based content management application that handles yaml, json and markdown files with front matter.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create "array" field type

spleenboy opened this issue · comments

Allow configuring a repeatable collection of values. This should be stored as an array of key-value paired objects. For example, this is how it would be saved as JSON.

{
    items: [
        {name: 'Red', value: '#ff0000'},
        {name: 'Blue', value: '#0000ff'},
        {name: 'Green', value: '#00ff00'}
    ]
}

This has been implemented as field "Collections"