pleroma/lib/pleroma/jwt.ex

10 lines
213 B
Elixir
Raw Permalink Normal View History

2019-04-20 14:42:19 +02:00
defmodule Pleroma.JWT do
use Joken.Config
@impl true
def token_config do
default_claims(skip: [:aud])
|> add_claim("aud", &Pleroma.Web.Endpoint.url/0, &(&1 == Pleroma.Web.Endpoint.url()))
end
end