ripper234
ripper234

Reputation: 230028

How to set a cookie with Play 2.1/Scala?

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

Answers (1)

maxmc
maxmc

Reputation: 4216

Ok("Hello").withCookies(Cookie("key1", "value"), Cookie("key2", "value2"))

Upvotes: 14

Related Questions