mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-24 21:53:59 +01:00
9 lines
213 B
Elixir
9 lines
213 B
Elixir
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
|