-
-
Notifications
You must be signed in to change notification settings - Fork 813
Closed
Description
I just wrote this code in a plugin and it felt like it could benefit from an abstraction: https://github.com/simonw/datasette-auth0/blob/152e6eb21e96e9b73bd9c205f9749a1297d0ef0b/datasette_auth0/__init__.py#L79-L92
redirect_response = Response.redirect("/")
expires_at = int(time.time()) + (24 * 60 * 60)
redirect_response.set_cookie(
"ds_actor",
datasette.sign(
{
"a": profile_response.json(),
"e": baseconv.base62.encode(expires_at),
},
"actor",
),
)
return redirect_responseReactions are currently unavailable