Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit d22acdf

Browse files
committed
updated terms noauth query
1 parent aba1c40 commit d22acdf

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

queries/get_terms_of_use_noauth

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
SELECT tou.terms_of_use_id as terms_of_use_id,
22
tou.title as title,
33
tou.url as url,
4-
tou.terms_text as text
4+
tou.terms_text as text,
5+
touat.terms_of_use_agreeability_type_id as agreeability_type_id,
6+
toudtx.docusign_template_id as docusign_template_id
57
FROM terms_of_use tou
8+
INNER JOIN terms_of_use_agreeability_type_lu touat ON touat.terms_of_use_agreeability_type_id = tou.terms_of_use_agreeability_type_id
9+
LEFT JOIN terms_of_use_docusign_template_xref toudtx ON toudtx.terms_of_use_id = tou.terms_of_use_id
610
WHERE tou.terms_of_use_id = @termsOfUseId@

0 commit comments

Comments
 (0)