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

12 lines
246 B
Ruby

module Messages
class MailboxesController < ApplicationController
layout "site"
before_action :authorize_web
before_action :set_locale
authorize_resource :class => Message
before_action :check_database_readable
end
end