1
0
Fork 0
mirror of synced 2024-05-20 12:42:39 +12:00

fix password format

This commit is contained in:
Damodar Lohani 2021-05-21 13:16:49 +05:45
parent 87bbcff3a7
commit fd509ad282

View file

@ -270,7 +270,7 @@ class Swagger2 extends Format
break;
case 'Appwrite\Auth\Validator\Password':
$node['type'] = $validator->getType();
$node['format'] = 'format';
$node['format'] = 'password';
$node['x-example'] = 'password';
break;
case 'Utopia\Validator\Range': /** @var \Utopia\Validator\Range $validator */