util.error: Add well-known field 'code' in error templates

Intended to be for HTTP-ish numeric status codes
This commit is contained in:
Kim Alvefur 2019-11-01 18:31:12 +01:00
parent 9f13e20ffe
commit 03adb50555
2 changed files with 3 additions and 0 deletions

View file

@ -14,6 +14,7 @@ local function new(e, context, registry)
type = template.type or "cancel";
condition = template.condition or "undefined-condition";
text = template.text;
code = template.code or 500;
context = context or template.context or { _error_id = e };
}, error_mt);