You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for compliance with internet regulations, we need to make it possible to download a human-readable and machine-readable exported version of their user data. For us this means their account info, friends, status, and profile (although profiles are not yet implemented). This should probably be a human-readable json file like
This should not include user UUIDs, since those are an internal representation specific to boop. Users' friends should be identified by their names and usernames, not their UUIDs.
The json-beautify package looks like a good choice for rendering the object into JSON that has whitespace for human-readability, rather than JSON.stringify() which puts everything on one line and is not very human readable.
The text was updated successfully, but these errors were encountered:
for compliance with internet regulations, we need to make it possible to download a human-readable and machine-readable exported version of their user data. For us this means their account info, friends, status, and profile (although profiles are not yet implemented). This should probably be a human-readable json file like
This should not include user UUIDs, since those are an internal representation specific to boop. Users' friends should be identified by their names and usernames, not their UUIDs.
The json-beautify package looks like a good choice for rendering the object into JSON that has whitespace for human-readability, rather than
JSON.stringify()
which puts everything on one line and is not very human readable.The text was updated successfully, but these errors were encountered: