fix: typo in notification template (#14108)

This commit is contained in:
Marcin Tojek
2024-08-02 11:03:11 +02:00
committed by GitHub
parent 83963b9e61
commit 76ce460cc4
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
UPDATE notification_templates
SET
body_template = E'Hi {{.UserName}},\n\New user account **{{.Labels.created_account_name}}** has been created.'
WHERE
id = '4e19c0ac-94e1-4532-9515-d1801aa283b2';

View File

@ -0,0 +1,5 @@
UPDATE notification_templates
SET
body_template = E'Hi {{.UserName}},\n\nNew user account **{{.Labels.created_account_name}}** has been created.'
WHERE
id = '4e19c0ac-94e1-4532-9515-d1801aa283b2';