mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-10-31 22:04:07 +00:00
10 lines
213 B
Elixir
10 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
|