Skip to content

Commit a551e52

Browse files
committed
fix addresses endpoints' input and output types
1 parent ae8a89f commit a551e52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/api/addresses.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ module.exports = (db, server, userHandler, settingsHandler) => {
279279
name: Joi.string().empty('').trim().max(128).description('Identity name'),
280280
main: booleanSchema.description('Indicates if this is the default address for the User'),
281281
allowWildcard: booleanSchema.description(
282-
'If true then address value can be in the form of `*@example.com` or `username@*`, otherwise using * is not allowed.'
282+
'If true then address value can be in the form of `*@example.com`, `*suffix@example.com` and `username@*`, otherwise using * is not allowed. Static suffix can be up to 32 characters long.'
283283
),
284284
tags: Joi.array().items(Joi.string().trim().max(128)).description('A list of tags associated with this address'),
285285

0 commit comments

Comments
 (0)