Update schema with titles/descriptions on mails/xmpp attributes.

This commit is contained in:
wescoeur 2015-12-02 15:47:33 +01:00
parent 4d1ca7ede4
commit 28bf7ee90b

View File

@ -7,6 +7,9 @@ export const configurationSchema = {
properties: { properties: {
toMails: { toMails: {
type: 'array', type: 'array',
title: 'mails',
description: 'an array of recipients (mails)',
items: { items: {
type: 'string' type: 'string'
}, },
@ -14,6 +17,9 @@ export const configurationSchema = {
}, },
toXmpp: { toXmpp: {
type: 'array', type: 'array',
title: 'xmpp address',
description: 'an array of recipients (xmpp)',
items: { items: {
type: 'string' type: 'string'
}, },