Sha256: 2f33c07fc5bd1d3dc4583070565541d321784c062805261984c36483293b4a4a

Contents?: true

Size: 335 Bytes

Versions: 1

Compression:

Stored size: 335 Bytes

Contents

# frozen_string_literal: true

class Tramway::News::NewsForm < ::Tramway::Core::ApplicationForm
  properties :title, :body, :published_at, :photo

  def initialize(object)
    form_object = super object
    form_properties title: :string,
                    body: :ckeditor,
                    photo: :file
    form_object
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
tramway-news-1.0.4.2 app/forms/tramway/news/news_form.rb