]> git.openstreetmap.org Git - rails.git/blob - app/controllers/accounts/deletions_controller.rb
Merge pull request #6394 from openstreetmap/dependabot/github_actions/ruby/setup...
[rails.git] / app / controllers / accounts / deletions_controller.rb
1 # frozen_string_literal: true
2
3 module Accounts
4   class DeletionsController < ApplicationController
5     layout :site_layout
6
7     before_action :authorize_web
8     before_action :set_locale
9
10     authorize_resource :class => false
11
12     def show; end
13   end
14 end