From 6a2963be419b03d5d06c91711e65a8a8dd6fdc14 Mon Sep 17 00:00:00 2001 From: Julien Fontanet Date: Thu, 12 Jan 2017 16:17:55 +0100 Subject: [PATCH] chore(configuration schema): add description for from.name and from.address --- packages/xo-server-transport-email/src/index.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/xo-server-transport-email/src/index.js b/packages/xo-server-transport-email/src/index.js index 68487096c..c5d913b9a 100644 --- a/packages/xo-server-transport-email/src/index.js +++ b/packages/xo-server-transport-email/src/index.js @@ -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' } },