diff --git a/app/controllers/api/users.php b/app/controllers/api/users.php index 48624d82d7..e2f485a71f 100644 --- a/app/controllers/api/users.php +++ b/app/controllers/api/users.php @@ -87,7 +87,7 @@ App::post('/v1/users') ->label('sdk.response.model', Response::MODEL_USER) ->param('userId', '', new CustomId(), 'User ID. Choose your own unique ID or pass the string "unique()" to auto generate it. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can\'t start with a special char. Max length is 36 chars.') ->param('email', '', new Email(), 'User email.') - ->param('password', '', new Password(), 'Plaintext user password. Must be at least 8 chars.') + ->param('password', '', new Password(), 'Plain text user password. Must be at least 8 chars.') ->param('name', '', new Text(128), 'User name. Max length: 128 chars.', true) ->inject('response') ->inject('dbForProject')