I want to generate an url like this:
/photo?tags=tag1,tag2,tag3
routes file:
GET /photo controllers.Photos.list
As an aside, if you wish to pass an array of Longs, this works:
GET /photo controllers.Photos.list(tags: java.util.List[java.lang.Long])
with the controller function taking List tags as an argument.
List tags