Use resourceful routes for web mailboxes

This commit is contained in:
Anton Khorev 2024-12-29 08:27:09 +03:00
parent 99af52b478
commit c7e038a4d0
21 changed files with 205 additions and 153 deletions

View file

@ -0,0 +1,8 @@
module Messages
class InboxesController < MailboxesController
# Display the list of messages that have been sent to the user.
def show
@title = t ".title"
end
end
end