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

15 lines
364 B
Ruby

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