Add the ability for a recipient to (logically) delete a message from
their INBOX so they no longer see it.
This commit is contained in:
parent
0d97737a7d
commit
f3bf0c8b14
7 changed files with 33 additions and 3 deletions
|
@ -194,6 +194,7 @@ ActionController::Routing::Routes.draw do |map|
|
|||
map.connect '/message/read/:message_id', :controller => 'message', :action => 'read'
|
||||
map.connect '/message/mark/:message_id', :controller => 'message', :action => 'mark'
|
||||
map.connect '/message/reply/:message_id', :controller => 'message', :action => 'reply'
|
||||
map.connect '/message/delete/:message_id', :controller => 'message', :action => 'delete'
|
||||
|
||||
# fall through
|
||||
map.connect ':controller/:id/:action'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue