hasgeek / funnel

Website for hasgeek.com
https://hasgeek.com/
GNU Affero General Public License v3.0
46 stars 52 forks source link

Private notes #94

Open jace opened 10 years ago

jace commented 10 years ago

Funnel should allow private notes for reviewers to keep track of candidates.

shreyas-satish commented 9 years ago

Would having a 'Draft' mode for comments solve this problem?

jace commented 9 years ago

No, these comments should be visible to other reviewers, but not to the proposer.

jace commented 9 years ago

Comments are attached to a Proposal via the CommentSpace model and a 1:1 relationship (see Proposal.comments). We could extend this to a 1:2 relationship with Proposal.review_comments, add view endpoints mapping to this new container, and rework the UI to make their appearance distinct.

jace commented 5 years ago

The CommentSet model may be overkill. We could have a simple PrivateNote model that is visible to everyone with editor (name may change) or reviewer role (as defined in #371), but not to anyone else including the proposer. Let notes be displayed in a sequence.

jace commented 5 years ago

This implementation will depend on changesets (in #395) and is on hold until that happens.