Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(analytics): improve user prompt and link to policies #3806

Merged
merged 4 commits into from
Dec 5, 2023
Merged
Changes from 3 commits
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
12 changes: 7 additions & 5 deletions ignite/internal/analytics/analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,14 @@ func checkDNT() (anonIdentity, error) {
i.DoNotTrack = false

prompt := promptui.Select{
Label: "Ignite collects metrics about command usage. " +
"All data is anonymous and helps to improve Ignite. " +
"Ignite respect the DNT rules (consoledonottrack.com). " +
"Would you agree to share these metrics with us?",
Label: "Ignite uses anonymized metrics to enhance the application, " +
"focusing on features such as command usage. We do not collect " +
"identifiable personal information. Your privacy is important to us. " +
"For more details, please visit our Privacy Policy at https://ignite.com/privacy " +
"and our Terms of Use at https://ignite.com/terms-of-use. " +
"Do you consent to the collection of these usage metrics for analytics purposes?",
Items: []string{"Yes", "No"},
}
}
resultID, _, err := prompt.Run()
if err != nil {
return anonIdentity{}, err
Expand Down
Loading