Sha256: 8e2b42d7858fcee71edff92610e713210176ddf8068ea970cd29babe87be0b81
Contents?: true
Size: 509 Bytes
Versions: 63
Compression:
Stored size: 509 Bytes
Contents
# frozen_string_literal: true module Decidim # A base form object to hold common logic, like automatically adding as # public method the params sent as context by the `FormFactory` concern. class Form < Rectify::Form delegate :current_organization, :current_user, :current_component, :current_participatory_space, to: :context, prefix: false, allow_nil: true delegate :available_locales, to: :current_organization, allow_nil: true end end
Version data entries
63 entries across 63 versions & 1 rubygems