aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkaniini <nenolod@gmail.com>2019-04-16 18:40:56 +0000
committerkaniini <nenolod@gmail.com>2019-04-16 18:40:56 +0000
commit02a53d00c93969ff99a460f69e92be5af2628691 (patch)
tree756aa6d47ad551f5f5c8cbb0744c0517230948dd /lib
parentcde7711b12d64081f16e88a3f3ac93c811471d61 (diff)
parent2472efb4e9aafe68d1ab3eef12ea3c3ad3859029 (diff)
downloadpleroma-02a53d00c93969ff99a460f69e92be5af2628691.tar.gz
Merge branch 'fix/remote-follow-auth' into 'develop'
Fix: remote follows should not ask user to log-in again for authorization See merge request pleroma/pleroma!1060
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/web/endpoint.ex13
1 files changed, 4 insertions, 9 deletions
diff --git a/lib/pleroma/web/endpoint.ex b/lib/pleroma/web/endpoint.ex
index 1633477c3..7f939991d 100644
--- a/lib/pleroma/web/endpoint.ex
+++ b/lib/pleroma/web/endpoint.ex
@@ -58,14 +58,9 @@ defmodule Pleroma.Web.Endpoint do
do: "__Host-pleroma_key",
else: "pleroma_key"
- same_site =
- if Pleroma.Config.oauth_consumer_enabled?() do
- # Note: "SameSite=Strict" prevents sign in with external OAuth provider
- # (there would be no cookies during callback request from OAuth provider)
- "SameSite=Lax"
- else
- "SameSite=Strict"
- end
+ extra =
+ Pleroma.Config.get([__MODULE__, :extra_cookie_attrs])
+ |> Enum.join(";")
# The session will be stored in the cookie and signed,
# this means its contents can be read but not tampered with.
@@ -77,7 +72,7 @@ defmodule Pleroma.Web.Endpoint do
signing_salt: {Pleroma.Config, :get, [[__MODULE__, :signing_salt], "CqaoopA2"]},
http_only: true,
secure: secure_cookies,
- extra: same_site
+ extra: extra
)
# Note: the plug and its configuration is compile-time this can't be upstreamed yet