We are trying to leverage the FullStory system into our site. However, we have a TON of PII data, and we would like to avoid having the explicitly denote each individual hard coded data as PII.
I was thinking if there was a way to create a global filter for our mustache binding expressions, we could invert the need, only unmasking fields that we deem acceptable to provide to FullStory.
for example:
Full story would require me to write the following in my templates:
<template>
<h1 class="fs-mask">Hello {{user.Name}}</h1>
<h2>please checkout {{newFeatureText}}</h2>
</template>
I write a component that looks like this:
<template>
<h1>Hello {{user.Name}}</h1>
<h2>please checkout {{newFeatureText | nonPII}}</h2>
</template>
This way we don't accidently miss masking information in our full story recording.