openstreetmap-website/app/controllers/accounts/homes_controller.rb
2025-02-15 19:02:30 +03:00

13 lines
261 B
Ruby

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