Add empty account home page

This commit is contained in:
Anton Khorev 2024-06-27 03:01:39 +03:00
parent f352c1dfbb
commit bd443cdfb1
6 changed files with 28 additions and 2 deletions

View file

@ -0,0 +1,13 @@
module Accounts
class HomesController < ApplicationController
layout :map_layout
before_action :authorize_web
before_action :set_locale
before_action :require_oauth
authorize_resource :class => :account_home
def show; end
end
end