PM-2108 "The usr_cnf_pass parameter should..." SOLVED

> Code Issue:
  The usr_cnf_pass parameter should be optional in the endpoint POST /api/1.0/{workspace}/user
> Solution:
  El parametro "usr_cnf_pass" en POST y PUT no es requerido.
This commit is contained in:
Luis Fernando Saisa Lopez
2015-04-08 11:36:38 -04:00
parent 0b40862053
commit 7214ee704b
2 changed files with 8 additions and 20 deletions

View File

@@ -75,8 +75,6 @@ class User extends Api
$userLoggedUid = $this->getUserId();
$user = new \ProcessMaker\BusinessModel\User();
$arrayData = $user->update($usr_uid, $request_data, $userLoggedUid);
$response = $arrayData;
return $response;
} catch (\Exception $e) {
throw (new RestException(Api::STAT_APP_EXCEPTION, $e->getMessage()));
}
@@ -113,4 +111,3 @@ class User extends Api
}
}
}