Skip to content

Commit

Permalink
Updated account path example
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Apr 19, 2024
1 parent e5fd4ac commit d5fead0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workers/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -2119,7 +2119,7 @@ When making API calls remember that requests against the same account are queued
name: Joi.string().max(256).required().example('My Email Account').description('Display name for the account'),
email: Joi.string().empty('').email().example('[email protected]').description('Default email address of the account'),

path: accountPathSchema.label('AccountPath'),
path: accountPathSchema.example(['*']).label('AccountPath'),

subconnections: accountSchemas.subconnections,

Expand Down Expand Up @@ -2377,7 +2377,7 @@ When making API calls remember that requests against the same account are queued
name: Joi.string().max(256).example('My Email Account').description('Display name for the account'),
email: Joi.string().empty('').email().example('[email protected]').description('Default email address of the account'),

path: accountPathSchema.label('AccountPath'),
path: accountPathSchema.example(['*']).label('AccountPath'),

subconnections: accountSchemas.subconnections,

Expand Down Expand Up @@ -2969,7 +2969,7 @@ When making API calls remember that requests against the same account are queued
notifyFrom: accountSchemas.notifyFrom,
syncFrom: accountSchemas.syncFrom,

path: accountPathSchema.label('AccountPath'),
path: accountPathSchema.example(['*']).label('AccountPath'),

subconnections: accountSchemas.subconnections,

Expand Down

0 comments on commit d5fead0

Please sign in to comment.