We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3fa40 commit eb28f01Copy full SHA for eb28f01
services/PlaceholderService.js
@@ -16,7 +16,7 @@ async function getAllPlaceholders (name) {
16
const cachedData = cache.get(`placeholders-${name}`)
17
if (cachedData == null) {
18
const data = await request
19
- .get(`${config.TC_EMAIL_SERVICE_URL}/templates/eventType/${name}`)
+ .get(`${config.TC_EMAIL_SERVICE_URL}/templates/${name}`)
20
.set('accept', 'json')
21
.set('authorization', `Bearer ${config.TC_EMAIL_SERVICE_TOKEN}`)
22
const parsedData = JSON.parse(data.text)
0 commit comments