This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Implement the RS01 consent content #529
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
f5014f1
updates storybook config to run; adds RS01 consent to irb stories
hamilton 6f53f75
begins updating boilerplate consent notice
hamilton 951af47
adds rs01 consent
hamilton 2cab2d6
changes to RS01Consent.svelte
hamilton 3b74515
updates the consent copy; builds in the routing for the study impleme…
hamilton 249a30c
clears lint error
hamilton 2218a06
fixes another lint error
hamilton 4143f1e
updates consent copy slightly
hamilton 5b89aa2
updates storybook example
hamilton ed6de2e
updates date
hamilton 8579fa5
removes rally from community insights
hamilton b7ededb
updates the RS01 consent copy
hamilton 81746ad
copy change to demo para
hamilton f10faa9
adds a GenericConsent elem
hamilton b1cd298
fixes nits
hamilton b7bc88a
adds the study URL into the consent (let's hope it's the right one)
hamilton e9cf316
fixes lint errors
hamilton c6a45c2
updates example date
hamilton 4c9168b
adds a workaround date parser for the study card endDate and joinedOn…
hamilton f64b8d1
changes small part of irb selection logic
hamilton File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,11 @@ | |
"version": "0.3.1", | ||
"addonId": "[email protected]", | ||
"downloadLink": "https://addons.mozilla.org/firefox/downloads/latest/ion-basic-study", | ||
"endDate": "2022-04-04", | ||
"studyEnded": false, | ||
"studyPaused": false, | ||
"description": "Study purpose: Testing Rally.", | ||
"privacyPolicyLink": "https://addons.mozilla.org/en-US/firefox/addon/ion-basic-study/", | ||
"joinStudyConsent": "This study will send an encrypted ping, only when the toolbar icon is clicked.", | ||
"leaveStudyConsent": "This study cannot be re-joined.", | ||
"studyDetailsLink": "https://addons.mozilla.org/en-US/firefox/addon/ion-basic-study/", | ||
"dataCollectionDetails": ["The date and time"], | ||
"tags": ["misinformation", "social media", "demo"] | ||
} | ||
|
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 |
---|---|---|
@@ -1,97 +1,90 @@ | ||
{ | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"icons": { | ||
"type": "object", | ||
"properties": { | ||
"32": { | ||
"type": "string" | ||
}, | ||
"64": { | ||
"type": "string" | ||
}, | ||
"128": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"32", | ||
"64", | ||
"128" | ||
] | ||
}, | ||
"authors": { | ||
"type": "object", | ||
"properties": { | ||
"url": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": [ | ||
"url", | ||
"name" | ||
] | ||
}, | ||
"version": { | ||
"type": "string" | ||
}, | ||
"addonId": { | ||
"type": "string" | ||
}, | ||
"downloadLink": { | ||
"type": "string" | ||
}, | ||
"studyEnded": { | ||
"type": "boolean" | ||
}, | ||
"studyPaused": { | ||
"type": "boolean" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"privacyPolicyLink": { | ||
"type": "string" | ||
}, | ||
"joinStudyConsent": { | ||
"type": "string" | ||
}, | ||
"leaveStudyConsent": { | ||
"type": "string" | ||
}, | ||
"dataCollectionDetails": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
} | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"name": { | ||
"type": "string" | ||
}, | ||
"icons": { | ||
"type": "object", | ||
"properties": { | ||
"32": { | ||
"type": "string" | ||
}, | ||
"required": [ | ||
"name", | ||
"icons", | ||
"authors", | ||
"version", | ||
"addonId", | ||
"downloadLink", | ||
"studyEnded", | ||
"studyPaused", | ||
"description", | ||
"privacyPolicyLink", | ||
"joinStudyConsent", | ||
"leaveStudyConsent", | ||
"dataCollectionDetails" | ||
] | ||
"64": { | ||
"type": "string" | ||
}, | ||
"128": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["32", "64", "128"] | ||
}, | ||
"authors": { | ||
"type": "object", | ||
"properties": { | ||
"url": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
} | ||
}, | ||
"required": ["url", "name"] | ||
}, | ||
"version": { | ||
"type": "string" | ||
}, | ||
"addonId": { | ||
"type": "string" | ||
}, | ||
"downloadLink": { | ||
"type": "string" | ||
}, | ||
"studyEnded": { | ||
"type": "boolean" | ||
}, | ||
"studyPaused": { | ||
"type": "boolean" | ||
}, | ||
"description": { | ||
"type": "string" | ||
}, | ||
"privacyPolicyLink": { | ||
"type": "string" | ||
}, | ||
"joinStudyConsent": { | ||
"type": "string" | ||
}, | ||
"leaveStudyConsent": { | ||
"type": "string" | ||
}, | ||
"dataCollectionDetails": { | ||
"type": "array", | ||
"items": [ | ||
{ | ||
"type": "string" | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"required": [ | ||
"name", | ||
"icons", | ||
"authors", | ||
"version", | ||
"addonId", | ||
"downloadLink", | ||
"studyEnded", | ||
"studyPaused", | ||
"description", | ||
"privacyPolicyLink", | ||
"joinStudyConsent", | ||
"leaveStudyConsent", | ||
"dataCollectionDetails" | ||
] | ||
} | ||
] | ||
} |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this was required to make storybook work again.