mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 12:49:02 -05:00
shopping list delay fix and category change implemented
This commit is contained in:
@@ -87,4 +87,15 @@ export function PatchedUserToJSON(value?: Omit<PatchedUser, 'username'|'display_
|
||||
'last_name': value['lastName'],
|
||||
};
|
||||
}
|
||||
// ----------------------------------------------------------------------
|
||||
// Custom model functions added by custom openapi-generator template
|
||||
// ----------------------------------------------------------------------
|
||||
import {ApiApi, ApiPatchedUserListRequest, PaginatedPatchedUserList} from "@/openapi";
|
||||
|
||||
/**
|
||||
* query list endpoint using the provided request parameters
|
||||
*/
|
||||
export function list(requestParameters: ApiPatchedUserListRequest = {}): Promise<PaginatedPatchedUserList> {
|
||||
const api = new ApiApi()
|
||||
return api.apiPatchedUserList(requestParameters)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user