agenda-libre-ruby/app/controllers/maps_controller.rb

14 lines
320 B
Ruby
Raw Normal View History

# Geocoding
#
# Access to OSM controls
class MapsController < ApplicationController
has_scope :region, :locality, :tag
def index
respond_to do |format|
format.html { render layout: 'iframe' if params[:iframe] }
format.json { render json: apply_scopes(Event.moderated.future.geo) }
end
end
end