mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 11:19:19 +00:00
HttpSignature Plug: Skip if already valid.
This commit is contained in:
parent
0aa56a853b
commit
38b61fddfe
1 changed files with 4 additions and 0 deletions
|
@ -6,6 +6,10 @@ defmodule Pleroma.Web.Plugs.HTTPSignaturePlug do
|
|||
options
|
||||
end
|
||||
|
||||
def call(%{assigns: %{valid_signature: true}} = conn, opts) do
|
||||
conn
|
||||
end
|
||||
|
||||
def call(conn, opts) do
|
||||
if get_req_header(conn, "signature") do
|
||||
conn = conn
|
||||
|
|
Loading…
Reference in a new issue