forked from baron/baron-sso
9 lines
308 B
Jsonnet
9 lines
308 B
Jsonnet
// Kratos courier HTTP payload을 backend로 전달하는 템플릿입니다.
|
|
function(ctx)
|
|
local data = if std.objectHas(ctx, "template_data") && ctx.template_data != null then ctx.template_data else {};
|
|
{
|
|
recipient: ctx.recipient,
|
|
template_type: ctx.template_type,
|
|
template_data: data,
|
|
}
|