Skip to content

Releases: teachbase/amorail

v0.7.2

08 Jan 19:35
Compare
Choose a tag to compare

Fixed refreshing token with redis storage #56

Adds multiple value property

25 Sep 07:10
Compare
Choose a tag to compare

There are cases when several values can be specified for a custom field, for example, several mobile or several emails. Adds support for this case.

class MyContact < Amorail::Contact
  amo_property :teachbase_id
  amo_property :phone, enum: 'MOB', multiple: true
end

contact.phone #=> ["123", "456"]