add Settings Class, add authAsUser method for collection

This commit is contained in:
Jonathan
2023-04-15 20:50:48 +02:00
parent 9d125d8cc2
commit df8ed036fc
5 changed files with 86 additions and 1 deletions

View File

@@ -46,6 +46,19 @@ class Collection
return json_decode($response, JSON_FORCE_OBJECT);
}
/**
* @param string $email
* @param string $password
* @return void
*/
public function authAsUser(string $email, string $password)
{
$result = $this->doRequest($this->url . "/api/collections/users/auth-with-password", 'POST', ['identity' => $email, 'password' => $password]);
if (!empty($result['token'])) {
self::$token = $result['token'];
}
}
/**
* @param int $batch
* @param array $queryParams