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