I want to generate an url like this:
/photo?tags=tag1,tag2,tag3
routes file:
GET /photo controllers.Photos.list(tags:Array[String] ?= "")
I got this errors in play console:
No QueryString binder found for type Array[String]
What is the best way to achieve this ?
Thanks.