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