最近搜索
没有最近搜索

Matthew Knight
已加入2021年10月22日
·
最后活动2021年10月22日
关注
0
关注者
0
活动总数
2
投票
0
订阅
1
活动概览
标记
文章
帖子
社区评论
文章评论
活动概览
的最新活动 Matthew Knight
Matthew Knight 进行了评论,
+1 I have recently started using Zendesk and quickly needed this functionality so we can escalate tickets outside of Zendesk and allow the user to respond without being added as a CC.
I have put together an API call using liquid markup in a Zendesk trigger that does the trick but it isn't the most elegant solution:
{% assign cc_list = "[" %}
{% for cc in ticket.ccs %}
{% if cc.email != current_user.email %}
{% assign cc_list = cc_list | append: '"' | append: cc.email | append: '",' %}
{% endif %}
{% endfor %}
{"ticket": {"collaborators": {{ cc_list | append: "]" | replace: ",]","]" }} } }
The above just removes the current user's email address from the list of CC's.
查看评论 · 已于 2017年7月10日 发布 · Matthew Knight
0
关注者
0
投票
0
评论