Skip to content

Commit

Permalink
ECWID-127118 implemented propagation of the keyword query parameter t…
Browse files Browse the repository at this point in the history
…o the search categories endpoint
  • Loading branch information
zenon-ecwid committed Oct 11, 2023
1 parent 5cb6028 commit e6be9ba
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ data class CategoriesSearchRequest(

val request = this
return mutableMapOf<String, String>().apply {
request.keyword?.let { put("keyword", it) }
parentCategoryId?.let { put("parent", it.toString()) }
request.categoryIds?.let { put("categoryIds", it.joinToString(",")) }
request.hiddenCategories?.let { put("hidden_categories", it.toString()) }
Expand Down

0 comments on commit e6be9ba

Please sign in to comment.