Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Unreleased

* [TT-4351] Add new scope parameter to timetable API
* [TT-4352] Expose pricing api/resource parameters

## 0.4.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,10 @@ Single<Response<ResponseBody>> logout(
@GET("resources")
Single<List<Resource>> getResources(
@Query("product_type_ids") List<Integer> productTypeIds,
@Query("web_site_id") Integer websiteId
@Query("web_site_id") Integer websiteId,
@Query("price") Boolean price,
@Query("children") Boolean children,
@Query("active_only") Boolean activeOnly
);

@GET("resource_categories")
Expand Down