Class: Decidim::Blogs::Admin::PostForm
- Inherits:
-
Form
- Object
- AttributeObject::Form
- Form
- Decidim::Blogs::Admin::PostForm
- Includes:
- 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
Instance Method Summary collapse
Methods included from TranslatableAttributes
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
#author ⇒ Object
31 32 33 |
# File 'decidim-blogs/app/forms/decidim/blogs/admin/post_form.rb', line 31 def user_or_group || current_organization end |
#map_model(model) ⇒ Object
20 21 22 |
# File 'decidim-blogs/app/forms/decidim/blogs/admin/post_form.rb', line 20 def map_model(model) self. = nil if model..is_a? Decidim::Organization end |
#user_or_group ⇒ Object
24 25 26 27 28 29 |
# File 'decidim-blogs/app/forms/decidim/blogs/admin/post_form.rb', line 24 def user_or_group @user_or_group ||= Decidim::UserBaseEntity.find_by( organization: current_organization, id: ) end |