From 999afa7e0dc18d275584eebc42c81217f3ead2cd Mon Sep 17 00:00:00 2001 From: Alexey Bezhan Date: Wed, 22 Nov 2017 14:19:16 +0000 Subject: [PATCH] Add reply_to to the list of template fields that can change --- app/template/rest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/template/rest.py b/app/template/rest.py index 9a30aab4b..de42e723d 100644 --- a/app/template/rest.py +++ b/app/template/rest.py @@ -155,7 +155,7 @@ def get_template_versions(service_id, template_id): def _template_has_not_changed(current_data, updated_template): return all( current_data[key] == updated_template[key] - for key in ('name', 'content', 'subject', 'archived', 'process_type') + for key in ('name', 'content', 'subject', 'archived', 'process_type', 'reply_to') )