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

10 lines
265 B
Ruby

module Messages
class MutedInboxesController < MailboxesController
# Display the list of muted messages received by the user.
def show
@title = t ".title"
redirect_to messages_inbox_path if current_user.muted_messages.none?
end
end
end