Skip to content

Commit

Permalink
fixup! regenerate api client
Browse files Browse the repository at this point in the history
  • Loading branch information
rlecellier committed Feb 27, 2023
1 parent a6183f4 commit a49e6ef
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/frontend/js/api/joanie/gen/services/ProductsService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,23 @@ export class ProductsService {
/**
* API ViewSet for all interactions with products.
* @param id primary key for the record as UUID
* @param course
* @returns Product
* @throws ApiError
*/
public productsRead(
id: string,
course?: string,
): CancelablePromise<Product> {
return this.httpRequest.request({
method: 'GET',
url: '/products/{id}/',
path: {
'id': id,
},
query: {
'course': course,
},
});
}

Expand Down

0 comments on commit a49e6ef

Please sign in to comment.