cafe-for-cats / mobile

client-side code for the project 📱
1 stars 0 forks source link

Investigate protest sharing solutions #69

Closed martiangirlie closed 3 years ago

martiangirlie commented 3 years ago
martiangirlie commented 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"
        }
    ]   
}

}

martiangirlie commented 3 years ago

The work resulting from the research of this spike will be continued on in #75 , #79 , and #81