Class: UserMailbox
- Inherits:
-
Object
- Object
- UserMailbox
- Defined in:
- app/models/user_mailbox.rb
Instance Attribute Summary collapse
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
- #delete_all ⇒ Object
- #destroy(message_id) ⇒ Object
- #inbox ⇒ Object
-
#initialize(user) ⇒ UserMailbox
constructor
A new instance of UserMailbox.
Constructor Details
#initialize(user) ⇒ UserMailbox
4 5 6 |
# File 'app/models/user_mailbox.rb', line 4 def initialize(user) @user = user end |
Instance Attribute Details
#user ⇒ Object (readonly)
Returns the value of attribute user.
2 3 4 |
# File 'app/models/user_mailbox.rb', line 2 def user @user end |
Instance Method Details
#delete_all ⇒ Object
13 14 15 16 17 18 |
# File 'app/models/user_mailbox.rb', line 13 def delete_all user.mailbox.inbox.each do |msg| (msg) end empty_trash(user) end |
#destroy(message_id) ⇒ Object
20 21 22 23 24 25 26 |
# File 'app/models/user_mailbox.rb', line 20 def destroy() msg = Mailboxer::Conversation.find() return "You do not have privileges to delete the notification..." unless msg.participants.include? user (msg) empty_trash(msg.participants[0]) nil end |
#inbox ⇒ Object
8 9 10 11 |
# File 'app/models/user_mailbox.rb', line 8 def inbox = user.mailbox.inbox .each { |m| m.mark_as_read(user) } end |