apachols / shorttrack

Open source speed dating in node.js
2 stars 0 forks source link

Users able to "vote" Y/N on their dates #22

Closed apachols closed 10 years ago

apachols commented 10 years ago

From the user schedule screen, we'll need to be able to

Probably we should not store this information ON the meetup record, as there may be record locking issues.

Or, if we do store it on the meetup record, perhaps we can use not meetup.matches, meetup.registered, or meetup.paid, but a new field, like meetup.votes?

We may need to key the votes on the combination of the two users' names. We can't even key into the match properly, because we don't know who is user1 and who is user2.

If we store them on the user record, that makes more sense, and i guess when we are sending emails afterward, we can go through meetup.matches to find out in which two user records we need to look at the user.votes field (or whatever better name).

apachols commented 10 years ago

Also, if we keep this info on the user record, we'll likely need to show the user their NAME or chosen nickname, instead of the other person's email address. We don't want to expose the other person's email address!

This is likely a problem with the existing user schedule screen, actually.

apachols commented 10 years ago

Hells to the yes! Voting looks great. Closing