]> git.openstreetmap.org Git - rails.git/blob - app/controllers/share_panes_controller.rb
Fix new rubocop warnings
[rails.git] / app / controllers / share_panes_controller.rb
1 class SharePanesController < ApplicationController
2   before_action :authorize_web
3   before_action :set_locale
4   authorize_resource :class => false
5
6   def show
7     @downloadable_layers = MapLayers.full_definitions("config/layers.yml")
8                                     .select { |layer| layer["canDownloadImage"] }
9     render :layout => false
10   end
11 end