-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sc 77184/trustedform v4 verify add 1 1 consent check (#121)
* Add 1:1 consent filter and advertiser name request field
- Loading branch information
1 parent
703b4a6
commit f10a6b8
Showing
9 changed files
with
205 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<template> | ||
<div> | ||
<header> | ||
Configure TrustedForm Verify | ||
</header> | ||
<section> | ||
<p> | ||
Enter the name of the legal entity for an advertiser that will be used to determine if they | ||
were given consent in a one to one manner. | ||
</p> | ||
<Form :actions="false"> | ||
<input | ||
v-model="advertiserName" | ||
type="text" | ||
placeholder="(optional) keep empty if you don't need to check one-to-one consent" | ||
></input> | ||
</Form> | ||
</section> | ||
<Navigation | ||
:onConfirm="confirm" | ||
:disableConfirm="false" | ||
:navHistory="navHistory" | ||
/> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { Navigation } from '@activeprospect/integration-components'; | ||
import { TextField, Form } from '@activeprospect/ui-components'; | ||
export default { | ||
components: { | ||
Navigation, | ||
TextField, | ||
Form | ||
}, | ||
data() { | ||
return { | ||
/** @type {string} */ | ||
advertiserName: "", | ||
/** @type {string[]} */ | ||
navHistory: this.$store.getters.getNavHistory | ||
}; | ||
}, | ||
methods: { | ||
confirm() { | ||
this.$store.commit('setAdvertiserName', { | ||
advertiserName: this.advertiserName | ||
}); | ||
this.$store.dispatch('confirm'); | ||
}, | ||
} | ||
}; | ||
</script> | ||
|
||
<style scoped> | ||
input { | ||
width: 65%; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.