chore: load terms of service & privacy policy links from env variables (#2963)

This commit is contained in:
Akash K
2023-04-04 20:59:31 +05:30
committed by GitHub
parent dd72eacd21
commit a24d724e2b
2 changed files with 15 additions and 3 deletions

View File

@@ -22,6 +22,10 @@ VITE_SHORTCODE_BASE_URL=https://hopp.sh
VITE_BACKEND_GQL_URL=https://api.hoppscotch.io/graphql VITE_BACKEND_GQL_URL=https://api.hoppscotch.io/graphql
VITE_BACKEND_WS_URL=wss://api.hoppscotch.io/graphql VITE_BACKEND_WS_URL=wss://api.hoppscotch.io/graphql
# Terms Of Service And Privacy Policy Links (Optional)
VITE_APP_TOS_LINK=https://docs.hoppscotch.io/terms
VITE_APP_PRIVACY_POLICY_LINK=https://docs.hoppscotch.io/privacy
# Sentry (Optional) # Sentry (Optional)
# VITE_SENTRY_DSN: <Sentry DSN here> # VITE_SENTRY_DSN: <Sentry DSN here>
# VITE_SENTRY_ENVIRONMENT: <Sentry environment value here> # VITE_SENTRY_ENVIRONMENT: <Sentry environment value here>

View File

@@ -76,18 +76,21 @@
</div> </div>
</template> </template>
<template #footer> <template #footer>
<div v-if="mode === 'sign-in'" class="text-secondaryLight text-tiny"> <div
v-if="mode === 'sign-in' && tosLink && privacyPolicyLink"
class="text-secondaryLight text-tiny"
>
By signing in, you are agreeing to our By signing in, you are agreeing to our
<HoppSmartAnchor <HoppSmartAnchor
class="link" class="link"
to="https://docs.hoppscotch.io/terms" :to="tosLink"
blank blank
label="Terms of Service" label="Terms of Service"
/> />
and and
<HoppSmartAnchor <HoppSmartAnchor
class="link" class="link"
to="https://docs.hoppscotch.io/privacy" :to="privacyPolicyLink"
blank blank
label="Privacy Policy" label="Privacy Policy"
/> />
@@ -141,6 +144,9 @@ export default defineComponent({
setup() { setup() {
const { subscribeToStream } = useStreamSubscriber() const { subscribeToStream } = useStreamSubscriber()
const tosLink = import.meta.env.VITE_APP_TOS_LINK
const privacyPolicyLink = import.meta.env.VITE_APP_PRIVACY_POLICY_LINK
return { return {
subscribeToStream, subscribeToStream,
t: useI18n(), t: useI18n(),
@@ -150,6 +156,8 @@ export default defineComponent({
IconEmail, IconEmail,
IconMicrosoft, IconMicrosoft,
IconArrowLeft, IconArrowLeft,
tosLink,
privacyPolicyLink,
} }
}, },
data() { data() {