cartodb/app/controllers/carto/api/organization_public_presenter.rb

16 lines
248 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
module Carto
module Api
class OrganizationPublicPresenter
def initialize(organization)
@organization = organization
end
def to_hash
{
name: @organization.name
}
end
end
end
end