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

Add Revolut as easy #154

Merged
merged 3 commits into from
Apr 28, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion CNAME
Original file line number Diff line number Diff line change
@@ -1 +1 @@
justgetmydata.com
justgetmydata.com
11 changes: 9 additions & 2 deletions _data/sites.json
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@
"difficulty": "easy",
"notes": "Download all your personal data (transaction history excluded). Click on the 'send request' button, you will be notified via email once your data is ready."
},

{
"name": "Paypal Transactions",
"url": "https://www.paypal.com/reports/dlog",
Expand Down Expand Up @@ -620,6 +620,14 @@
"notes_pl-PL": "Kliknij na pobieranie danych z zakresu czasu lub wszystkich. Następnie poczekaj na prywatną wiadomość w reddit, kliknij w 'Pobierz tutaj' i gotowe. UWAGA: prośbę o dane można wykonać tylko raz na 30 dni."
},

{
"name": "Revolut",
"url": "https://www.revolut.com/privacy-policy/",
"difficulty": "easy",
"notes": "From the app, go to the profile icon, then to \"Account\" -> \"Documents\" -> \"General\" -> \"Subject access request\". You will get a PDF document with your data.",
"notes_it-IT": "Dall'applicazione, vai sull'icona del profilo, quindi su \"Conto\" -> \"Documenti\" -> \"Generale\" -> \"Richiesta di accesso ai dati personali\". Otterrai un documento PDF con i tuoi dati."
},

{
"name": "Riot Games",
"url": "https://support-leagueoflegends.riotgames.com/hc/en-us/requests/new",
Expand Down Expand Up @@ -714,7 +722,6 @@
"notes": "The email and phone number you use on the form must be associated with your T-Mobile account. Proof of identity (Driver's License or Passport, New Hampshire residents cannot submit a Driver's License as proof) is required."
},


{
"name": "T-shirt personalisé",
"url": "https://vive-lamode.com/collections/t-shirt-personnalise",
Expand Down
2 changes: 1 addition & 1 deletion assets/js/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ $(function(){
$(".num-sort a").click(function(e){
e.preventDefault();
var term = $(this).text().toLowerCase();

hideFilteredSites(function() {
var text = $(this).find(".site-header").text().trim().toLowerCase().substr(0,1);
return !~text.indexOf(term);
Expand Down
2 changes: 1 addition & 1 deletion script/validate_json.rb
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def validate_site_translation(is_sites_json, keys_in_language_json, file)
STDERR.puts file + " contains duplicates"
exit ExitCodes::DUPLICATES
end

# check for alphabetical ordering
json.each_with_index do |(key, _), i|
# sites.json is an array of objects; this would expand to:
Expand Down
Loading