chore(configuration schema): add description for from.name and from.address

This commit is contained in:
Julien Fontanet 2017-01-12 16:17:55 +01:00
parent fdd33abe91
commit 6a2963be41

View File

@ -23,10 +23,12 @@ export const configurationSchema = {
properties: {
name: {
type: 'string'
type: 'string',
description: 'human readable name of the sender'
},
address: {
type: 'string'
type: 'string',
description: 'email address of the sender'
}
},