cartodb/app/controllers/carto/api/organization_public_presenter.rb
2020-06-15 10:58:47 +08:00

16 lines
248 B
Ruby

module Carto
module Api
class OrganizationPublicPresenter
def initialize(organization)
@organization = organization
end
def to_hash
{
name: @organization.name
}
end
end
end
end