Class: Decidim::Blogs::PostForm

Inherits:
Form show all
Includes:
AttachmentAttributes, HasTaxonomyFormAttributes, HasUploadValidations, TranslatableAttributes
Defined in:
decidim-blogs/app/forms/decidim/blogs/post_form.rb

Overview

This class holds a Form to update pages from Decidim’s admin panel.

Constant Summary

Constants included from AttributeObject::TypeMap

AttributeObject::TypeMap::Boolean, AttributeObject::TypeMap::Decimal

Instance Attribute Summary

Attributes inherited from AttributeObject::Form

#context

Instance Method Summary collapse

Methods included from HasUploadValidations

#attached_uploader, #maximum_avatar_size, #maximum_upload_size

Methods included from TranslatableAttributes

#attachment?, #default_locale?

Methods inherited from AttributeObject::Form

ensure_hash, from_model, from_params, hash_from, infer_model_name, mimic, mimicked_model_name, model_name, #persisted?, #to_key, #to_model, #to_param, #valid?, #with_context

Methods included from AttributeObject::Model

#[], #[]=, #attributes, #attributes_with_values, #initialize, #to_h

Instance Method Details

#authorObject



34
35
36
37
38
39
# File 'decidim-blogs/app/forms/decidim/blogs/post_form.rb', line 34

def author
  @author ||= Decidim::UserBaseEntity.find_by(
    organization: current_organization,
    id: decidim_author_id
  )
end

#map_model(model) ⇒ Object



26
27
28
29
30
31
32
# File 'decidim-blogs/app/forms/decidim/blogs/post_form.rb', line 26

def map_model(model)
  presenter = PostPresenter.new(model)

  self.title = presenter.title
  self.body = presenter.body
  self.documents = model.attachments
end