cartodb-4.42/lib/cartodb/controller_flows/public/datasets.rb
2024-04-06 05:25:13 +00:00

31 lines
522 B
Ruby

module CartoDB
module ControllerFlows
module Public
class Datasets
def initialize(ctrl)
@ctrl = ctrl
end
def organization_content(org)
@ctrl.datasets_for_organization(org)
end
def organization_path
CartoDB.path(@ctrl, 'public_datasets_home')
end
def render_404
@ctrl.render_not_found
end
def user_content(user)
@ctrl.datasets_for_user(user)
end
end
end
end
end