openstreetmap-website/app/controllers/messages/outboxes_controller.rb
2024-12-29 08:40:39 +03:00

8 lines
196 B
Ruby

module Messages
class OutboxesController < MailboxesController
# Display the list of messages that the user has sent to other users.
def show
@title = t ".title"
end
end
end