You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
General users of the website should be able to
* See what messages have been submitted by themselves
* See what messages have been submitted by other users
* See the surrounding conversations related to submitted messages
* See the full conversation tree related to submitted messages
This should use the backend's new message API:
* `/api/v1/messages`: by global message id (uuid)
* `/api/v1/users/{user_id}/messages`: by global user id (uuid)
* `/api/v1/frontend_messages`: by frontend message id
* `/api/v1/frontend_users/{username}/messages`: by frontend user name (auth_method will be added here)
* `/api/v1/messages/{message_id}/tree`: The full tree containing the message
* `/api/v1/messages/{message_id}/conversation`: The conversation holding the message.
This should be both a widget that appears on the landing page and various sub-pages for displaying the larger context.