Class: Decidim::Blogs::Admin::PostForm

Inherits:
Form show all
Includes:
HasTaxonomyFormAttributes, TranslatableAttributes
Defined in:
decidim-blogs/app/forms/decidim/blogs/admin/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 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
# File 'decidim-blogs/app/forms/decidim/blogs/admin/post_form.rb', line 34

def author
  user_or_group || current_organization
end

#map_model(model) ⇒ Object



23
24
25
# File 'decidim-blogs/app/forms/decidim/blogs/admin/post_form.rb', line 23

def map_model(model)
  self.decidim_author_id = nil if model.author.is_a? Decidim::Organization
end

#user_or_groupObject



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

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