cartodb-4.42/lib/cartodb/controller_flows/public/maps.rb

31 lines
506 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
module CartoDB
module ControllerFlows
module Public
class Maps
def initialize(ctrl)
@ctrl = ctrl
end
def organization_content(org)
@ctrl.maps_for_organization(org)
end
def organization_path
CartoDB.path(@ctrl, 'public_maps_home')
end
def render_404
@ctrl.render_not_found
end
def user_content(user)
@ctrl.maps_for_user(user)
end
end
end
end
end