From 340cfb010474274353ca863c2c536bb5cc97d586 Mon Sep 17 00:00:00 2001 From: "Eldad A. Fux" Date: Sun, 14 Aug 2022 20:01:32 +0300 Subject: [PATCH] Update app/controllers/api/users.php --- app/controllers/api/users.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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')