mirror of
https://codeberg.org/MarkusThielker/next-ory.git
synced 2025-04-19 09:01:18 +00:00
13 lines
386 B
Jsonnet
13 lines
386 B
Jsonnet
|
|
local claims = std.extVar('claims');
|
|
|
|
{
|
|
identity: {
|
|
traits: {
|
|
[if 'email' in claims && claims.email_verified then 'email' else null]: claims.email,
|
|
[if 'nickname' in claims then 'username' else null]: claims.nickname,
|
|
[if 'nickname' in claims then 'name' else null]: claims.nickname,
|
|
},
|
|
metadata_public: claims,
|
|
},
|
|
}
|