mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
The parameter is not used, we can remove it and adapt the callers. Signed-off-by: moson-mo <mo-son@mailbox.org>
8 lines
156 B
Python
8 lines
156 B
Python
def samesite() -> str:
|
|
"""Produce cookie SameSite value.
|
|
|
|
Currently this is hard-coded to return "lax"
|
|
|
|
:returns "lax"
|
|
"""
|
|
return "lax"
|