Class: Decidim::Admin::BlockUserForm

Inherits:
Form show all
Defined in:
decidim-admin/app/forms/decidim/admin/block_user_form.rb

Overview

A form object used to block users or user groups on the admin dashboard.

Constant Summary

Constants included from Decidim::AttributeObject::TypeMap

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

Instance Attribute Summary

Attributes inherited from Decidim::AttributeObject::Form

#context

Instance Method Summary collapse

Methods inherited from Decidim::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 Decidim::AttributeObject::Model

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

Instance Method Details

#map_model(user) ⇒ Object



14
15
16
# File 'decidim-admin/app/forms/decidim/admin/block_user_form.rb', line 14

def map_model(user)
  self.user_id = user.id
end

#userObject



18
19
20
21
22
23
# File 'decidim-admin/app/forms/decidim/admin/block_user_form.rb', line 18

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