最近搜索
没有最近搜索

Callum D
已加入2023年1月09日
·
最后活动2023年12月29日
关注
0
关注者
0
活动总数
10
投票
1
订阅
5
活动概览
标记
文章
帖子
社区评论
文章评论
活动概览
的最新活动 Callum D
Callum D 进行了评论,
Yes, it is possible to provide end users with a log of their search history. This can be done by tracking and storing the search queries made by the user in a database associated with their account. The log can then be retrieved and displayed on their profile page or as they search. The implementation details of such a feature would depend on the specifics of the website, including the technology stack and the data storage solution being used.
查看评论 · 已于 2023年2月06日 发布 · Callum D
0
关注者
0
投票
0
评论
Callum D 进行了评论,
Yes, it is possible to automatically assign a field in Zendesk based on the requester's email domain. You can achieve this by creating a trigger in Zendesk that matches the incoming email address and sets the corresponding value in the 'Agency/Customer' field.
Here's a step-by-step guide to create the trigger:
- Go to the Zendesk Admin interface
- Navigate to the Triggers section
- Click on the "Add trigger" button
- Give the trigger a name, e.g. "Assign Agency/Customer based on email domain"
- In the "Meet all of the following conditions" section, select "Ticket is created" as the trigger event.
- Add a new condition "Ticket: Requester email" and specify the pattern that matches.
I think this will answer your question.
查看评论 · 已于 2023年2月06日 发布 · Callum D
0
关注者
3
投票
0
评论
Callum D 创建了一个帖子,
I'm creating a test suite for our Zendesk apps, and testcafe works ok in our settings but not with a local zat server. When a developer wishes to test a change, they will create and run the app within a zat server, which will communicate with the Zendesk instance selected, and when?zat=true is attached to the URL, the local app modifications will be loaded. The updates do not appear to load in Testcafe, and there is no contact with the zat server. Pull requests must include a zat server to test changes before they are merged with other environments. I realise this is a very unique issue, however
已于 2023年1月19日 发布 · Callum D
1
关注者
2
投票
1
Comment
Callum D 创建了一个帖子,
I need to display the user's name in the Zendesk chat (for the agents), and I'm using the Zendesk code:
window.zESettings = {
webWidget: {
authenticate: {
chat: {
jwtFn: function(callback) {
fetch('JWT_TOKEN_ENDPOINT').then(function(res) {
res.text().then(function(jwt) {
callback(jwt);
});
});
}
}
}
}
};
and the jwt token is as follows:
var payload = {
name: '#{customerName}',
email: '#{customerEmail}',
iat: #{timestamp},
external_id: '#{externalId}'
};
var token = jwt.sign(payload, '#{yourSecret}');
The code does not function, and there are no problems, but the user name is not shown. The Zendesk manual is devoid of useful information; has anyone incorporated Zendesk into their app? What am I doing incorrectly? Any assistance and suggestions are much welcomed.
已于 2023年1月09日 发布 · Callum D
0
关注者
3
投票
1
Comment