Closed dgatto closed 3 years ago
Notes from chat w/ Hermes:
// private users? // search for username within the app
// harsher verifications for higher profile organization (aclu, etc.)
// before registering, do human verification asssign device id // on register, associate device id with registered account.
// if device id not found in associatedDeviceIds, verify new device id with an email confirmation. // (already have email stored from 2fa)
{ "user": { "userId": "1234", "username": "ABC", "password": "asdf", "associatedDeviceIds": ["asdf", "dlkj"], // https://ionicframework.com/docs/native/unique-device-id "associatedProtests": [ { "protestId": "5678", "accessLevel": "Leader" } ] },
"protest": {
"id": "5678",
"title": "ABC",
"associatedUsers": [
{
"userId": "1234"
}
]
}
}
The work resulting from the research of this spike will be continued on in #75 , #79 , and #81