最近搜索
没有最近搜索

Josh Keller
已加入2021年4月16日
·
最后活动2024年10月25日
关注
0
关注者
1
活动总数
32
投票
8
订阅
14
活动概览
标记
文章
帖子
社区评论
文章评论
活动概览
的最新活动 Josh Keller
Josh Keller 进行了评论,
Pleeeeeease tell us that the API for merging organizations is coming soon. This isn't very useful for large Zendesk customers until we can do this via API.
查看评论 · 已于 2023年11月06日 发布 · Josh Keller
0
关注者
1
投票
0
评论
Josh Keller 进行了评论,
Thank you, Lisa Setford. Sadly we already have Personalized email replies disabled. We just opened a ticket with Zendesk about this--hopefully they can help us get this sorted. Thanks again, though!
查看评论 · 已于 2023年9月06日 发布 · Josh Keller
0
关注者
1
投票
0
评论
Josh Keller 进行了评论,
So much agreement here. This is a security issue. We're also seeing agent's full names exposed, though it's not consistent.
查看评论 · 已于 2023年9月06日 发布 · Josh Keller
0
关注者
0
投票
0
评论
Josh Keller 进行了评论,
I've found the following to manage app sizing pretty well:
function resize_app() {
let el = document.getElementsByTagName('body')[0];
let height = el.offsetHeight;
let style = getComputedStyle(el);
height += parseInt(style.marginTop) + parseInt(style.marginBottom) + 10;
client.invoke('resize', { width: '100%', height: height });
}
function debounce(func, timeout=250) {
let timer;
return (...args) => {
clearTimeout(timer);
timer = setTimeout(() => { func.apply(this, args); }, timeout);
};
}
window.addEventListener('load', debounce(resize_app));
window.addEventListener('resize', debounce(resize_app));
The 250ms debounce delay might be excessive, but it's helpful since we have so many apps competing against each other for resources.
I found the additional 10 (pixels) added to the height was necessary, though I don't really understand why since I think the full height should be accounted for by parsing the body element.
查看评论 · 已于 2022年1月27日 编辑 · Josh Keller
0
关注者
0
投票
0
评论
Josh Keller 进行了评论,
The "Ticket skills" attribute seems to return all skills that were ever applied to the ticket. How can we get only the currently-applied ticket skills?
查看评论 · 已于 2021年3月16日 发布 · Josh Keller
0
关注者
4
投票
0
评论
Josh Keller 进行了评论,
Seems this is a known issue :(
https://support.zendesk.com/hc/en-us/articles/115007946367-HTML-and-Markdown-used-in-dynamic-content-does-not-render-in-trigger-emails-or-agent-signatures
查看评论 · 已于 2020年10月15日 发布 · Josh Keller
0
关注者
2
投票
0
评论