[__jitsi_meet_domain] Make shellcheck happy and fix escaping issue
The escaping issue was overlooked because it was in a comment block; it wasn't relevant. No functional changes intended. Sponsored by: camilion.eu, eXO.cat
This commit is contained in:
parent
a63d9ec458
commit
aa3f2eeb00
2 changed files with 4 additions and 4 deletions
|
@ -32,4 +32,4 @@ download_file doc/debian/jitsi-meet-prosody/prosody.cfg.lua-jvb.example prosody.
|
||||||
|
|
||||||
# Change the version file, maintainers should check that it matches
|
# Change the version file, maintainers should check that it matches
|
||||||
# the deb version
|
# the deb version
|
||||||
printf "2.0.${BRANCH#*_}-1" > jitsi-version
|
printf "2.0.%s-1" "${BRANCH#*_}" > jitsi-version
|
||||||
|
|
|
@ -1028,9 +1028,9 @@ ${ANALYTICS_SETTINGS}
|
||||||
// Endpoint that enables support for salesforce integration with in-meeting resource linking
|
// Endpoint that enables support for salesforce integration with in-meeting resource linking
|
||||||
// This is required for:
|
// This is required for:
|
||||||
// listing the most recent records - salesforceUrl/records/recents
|
// listing the most recent records - salesforceUrl/records/recents
|
||||||
// searching records - salesforceUrl/records?text=${text}
|
// searching records - salesforceUrl/records?text=\${text}
|
||||||
// retrieving record details - salesforceUrl/records/${id}?type=${type}
|
// retrieving record details - salesforceUrl/records/\${id}?type=\${type}
|
||||||
// and linking the meeting - salesforceUrl/sessions/${sessionId}/records/${id}
|
// and linking the meeting - salesforceUrl/sessions/\${sessionId}/records/\${id}
|
||||||
//
|
//
|
||||||
// salesforceUrl: 'https://api.example.com/',
|
// salesforceUrl: 'https://api.example.com/',
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue