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

Tom term detail noauth #488

Merged
merged 2 commits into from
Sep 26, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
updated terms noauth query
  • Loading branch information
tladendo committed Sep 23, 2016
commit d22acdf9e554a17326b04f0ab8a259bd5fc09d0b
6 changes: 5 additions & 1 deletion queries/get_terms_of_use_noauth
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
SELECT tou.terms_of_use_id as terms_of_use_id,
tou.title as title,
tou.url as url,
tou.terms_text as text
tou.terms_text as text,
touat.terms_of_use_agreeability_type_id as agreeability_type_id,
toudtx.docusign_template_id as docusign_template_id
FROM terms_of_use tou
INNER JOIN terms_of_use_agreeability_type_lu touat ON touat.terms_of_use_agreeability_type_id = tou.terms_of_use_agreeability_type_id
LEFT JOIN terms_of_use_docusign_template_xref toudtx ON toudtx.terms_of_use_id = tou.terms_of_use_id
WHERE tou.terms_of_use_id = @termsOfUseId@