cartodb-4.42/app/models/carto/license/presenter.rb

16 lines
216 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
module Carto
class LicensePresenter
def initialize(license)
@license = license
end
def to_poro
{
id: @license.id,
name: @license.name
}
end
end
end