Sha256: 9b33f0a19c353a70c20e9726fdc424088761b9673c0f542701d83cb1e3e051a8

Contents?: true

Size: 647 Bytes

Versions: 3

Compression:

Stored size: 647 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, :email

  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,
                      email: :string
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
tramway-conference-1.9 app/forms/tramway/conference/unity_form.rb
tramway-conference-1.8.14.1 app/forms/tramway/conference/unity_form.rb
tramway-conference-1.8.14 app/forms/tramway/conference/unity_form.rb