openstreetmap-website/app/controllers/accounts/deletions_controller.rb
2025-01-03 15:40:59 +03:00

12 lines
219 B
Ruby

module Accounts
class DeletionsController < ApplicationController
layout "site"
before_action :authorize_web
before_action :set_locale
authorize_resource :class => false
def show; end
end
end