Fix createUser endpoint
This commit is contained in:
parent
fd91f7985d
commit
77b9785dc0
|
@ -1,6 +1,18 @@
|
|||
<?php
|
||||
if($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||
if(strlen($_REQUEST['password']) < 8) {
|
||||
if(!isset($_REQUEST['login'])) {
|
||||
$data = [
|
||||
'error' => true,
|
||||
'message' => 'Не передано поле login',
|
||||
];
|
||||
}
|
||||
elseif(!isset($_REQUEST['password'])) {
|
||||
$data = [
|
||||
'error' => true,
|
||||
'message' => 'Не передано поле password',
|
||||
];
|
||||
}
|
||||
elseif(strlen($_REQUEST['password']) < 8) {
|
||||
$data = [
|
||||
'error' => true,
|
||||
'message' => 'Пароль должен иметь 8 символов минимум',
|
||||
|
|
Loading…
Reference in New Issue