get all lots not only temporary

This commit is contained in:
Cayo Puigdefabregas 2023-01-10 14:10:49 +01:00
parent 63c7b29233
commit 350aad19c4
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ const Api = {
* @returns get lots * @returns get lots
*/ */
async get_lots() { async get_lots() {
const request = await this.doRequest(`${API_URLS.lots}?type=temporary`, "GET", null); const request = await this.doRequest(`${API_URLS.lots}`, "GET", null);
if (request != undefined) return request.items; if (request != undefined) return request.items;
throw request; throw request;
}, },