]> git.openstreetmap.org Git - rails.git/blob - app/controllers/accounts/homes_controller.rb
Add frozen_string_literal comments to ruby files
[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