Sha256: 2068658e469bb0dba40f107324443d873221e8a0ee456a09bbf8ef98fa40ef81

Contents?: true

Size: 601 Bytes

Versions: 1

Compression:

Stored size: 601 Bytes

Contents

# frozen_string_literal: true

class Tramway::Conference::UnityForm < ::Tramway::Core::ApplicationForm
  properties :title, :tagline, :logo, :state, :phone, :address, :longtitude, :latitude, :url, :found_date

  def initialize(object)
    super(object).tap do
      form_properties title: :string,
                      tagline: :string,
                      phone: :string,
                      address: :string,
                      latitude: :string,
                      longtitude: :string,
                      url: :string,
                      found_date: :date_picker
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tramway-conference-1.8.13.2 app/forms/tramway/conference/unity_form.rb