Class: Decidim::Admin::OrganizationForm

Inherits:
Form show all
Includes:
TranslatableAttributes
Defined in:
decidim-admin/app/forms/decidim/admin/organization_form.rb

Overview

A form object used to update the current organization from 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 included from TranslatableAttributes

#default_locale?

Methods inherited from Decidim::AttributeObject::Form

ensure_hash, from_model, from_params, hash_from, infer_model_name, #map_model, 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

#machine_translation_prioritiesObject



51
52
53
54
55
56
57
58
# File 'decidim-admin/app/forms/decidim/admin/organization_form.rb', line 51

def machine_translation_priorities
  Decidim::Organization::AVAILABLE_MACHINE_TRANSLATION_DISPLAY_PRIORITIES.map do |priority|
    [
      priority,
      I18n.t("activemodel.attributes.organization.machine_translation_display_priority_#{priority}")
    ]
  end
end