mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
10 lines
504 B
SQL
10 lines
504 B
SQL
INSERT INTO notification_templates (id, name, title_template, body_template, "group", actions)
|
|
VALUES ('f44d9314-ad03-4bc8-95d0-5cad491da6b6', 'User account deleted', E'User account "{{.Labels.deleted_account_name}}" deleted',
|
|
E'Hi {{.UserName}},\n\nUser account **{{.Labels.deleted_account_name}}** has been deleted.',
|
|
'User Events', '[
|
|
{
|
|
"label": "View accounts",
|
|
"url": "{{ base_url }}/deployment/users?filter=status%3Aactive"
|
|
}
|
|
]'::jsonb);
|