Digest emails

This commit is contained in:
Roman Chvanikov 2019-04-20 19:42:19 +07:00
commit 64a2c6a041
19 changed files with 243 additions and 4 deletions

9
lib/pleroma/jwt.ex Normal file
View file

@ -0,0 +1,9 @@
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