forked from AkkomaGang/akkoma
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 @@ def init(options) 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