mirror of
https://github.com/discourse/discourse.git
synced 2025-09-05 08:59:27 +08:00
FEATURE: allow users to archive messages
Messages are now in 3 buckets - Inbox for all new messages - Sent for all sent messages - Archive for all messages you are done with You can select messages from your Inbox or Sent and move them to your Archive, you can move messages out of your Archive similarly Similar concept applied to group messages, except that archiving and unarchiving will apply to all group members
This commit is contained in:
parent
e03861da7e
commit
03ea0bfe22
30 changed files with 290 additions and 57 deletions
4
app/models/user_archived_message.rb
Normal file
4
app/models/user_archived_message.rb
Normal file
|
@ -0,0 +1,4 @@
|
|||
class UserArchivedMessage < ActiveRecord::Base
|
||||
belongs_to :user
|
||||
belongs_to :topic
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue