Add reply_to to the list of template fields that can change

This commit is contained in:
Alexey Bezhan
2017-11-22 14:19:16 +00:00
parent dc7bd216bf
commit 999afa7e0d

View File

@@ -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')
)