diff options
author | lain <lain@soykaf.club> | 2018-09-05 19:06:28 +0200 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-09-05 19:06:28 +0200 |
commit | 12bc73dd2833a22cce6a22841d33c992b1eb31fc (patch) | |
tree | 39a18d9d35ad8e28ce0b670c00c359338de31315 /lib/pleroma/plugs/authentication_plug.ex | |
parent | 32465b9939718f7bc6604594e0404340c3e02cc9 (diff) | |
download | pleroma-12bc73dd2833a22cce6a22841d33c992b1eb31fc.tar.gz |
Add EnsureUserKeyPlug, smaller fixes
Diffstat (limited to 'lib/pleroma/plugs/authentication_plug.ex')
-rw-r--r-- | lib/pleroma/plugs/authentication_plug.ex | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/pleroma/plugs/authentication_plug.ex b/lib/pleroma/plugs/authentication_plug.ex index 8706b32cd..3ac301b97 100644 --- a/lib/pleroma/plugs/authentication_plug.ex +++ b/lib/pleroma/plugs/authentication_plug.ex @@ -37,4 +37,6 @@ defmodule Pleroma.Plugs.AuthenticationPlug do Pbkdf2.dummy_checkpw() conn end + + def call(conn, _), do: conn end |