Skip to content

Commit

Permalink
Merge pull request #339 from Ecwid/ECWID_127118
Browse files Browse the repository at this point in the history
ECWID-127118 implemented propagation of the keyword query parameter t…
  • Loading branch information
zenon-ecwid authored Oct 12, 2023
2 parents 830e064 + e6be9ba commit 547162b
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 547162b

Please sign in to comment.