(feat): share specific comments
Users should be able to share a link to specific comments within posts and group chat.
added Priority::2 - Normal Product::Comments Type::Feature scoped labels
A quick look at the notification link inside Chrome's code console reveals that there is a full url generated from the thread component URNs, which is how it jumps you from the notification list to the specific message.
This means the backend linking work is already done and all that needs to be done is expose that very same link with a share button.
Thanks!
This is actually a front end related issue too.
The router component for sharing would need to change in order to accept a query parameter for
commentId
or something along the lines of this.Should also be opened (or related to the front end). All that needs to happen for the backend is an ability to
GET
a post bycommentId
.moved to front#1755