16 lines
248 B
Ruby
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
|