Reputation: 2109
I am trying to delete a cookie.
How do i delete a cookie in mojolicious or how do i set response cookie expiry date to past date.
Plz! help Thanks.
Upvotes: 3
Views: 1266
Reputation: 311
You can delete cookie by setting an expiration date in the past. For example, you can write following code in controller: $self->cookie($cookie_name => '', {expires => 1})
.
Upvotes: 4
Reputation: 44
Try $self->session(expires => 1)
. Also try the fantastic mojocasts
Upvotes: 2