Rename Account module to Accounts

This commit is contained in:
Anton Khorev 2025-01-03 15:40:59 +03:00
parent 7286ad027c
commit eec5cadf2a
4 changed files with 22 additions and 24 deletions

View file

@ -0,0 +1,12 @@
module Accounts
class DeletionsController < ApplicationController
layout "site"
before_action :authorize_web
before_action :set_locale
authorize_resource :class => false
def show; end
end
end