Reputation: 230028
The java docs show how to set a cookie with Java:
response().setCookie("theme", "blue");
How do I do the same with scala?
Upvotes: 2
Views: 4800
Reputation: 4216
Ok("Hello").withCookies(Cookie("key1", "value"), Cookie("key2", "value2"))
Upvotes: 14