Sha256: 705612b9dee3316f2940bca829b0e5a55f760665189983a649070871cd1241e9

Contents?: true

Size: 737 Bytes

Versions: 6

Compression:

Stored size: 737 Bytes

Contents

# frozen_string_literal: true

module Decidim
  module Admin
    # A form object used to create managed users from the admin dashboard.
    #
    # This form will contain a dynamic attribute for the user authorization.
    # This authorization will be selected by the admin user if more than one exists.
    class ManagedUserForm < Form
      attribute :name, String

      validates :name, presence: true

      def initialize(attributes)
        extend(Virtus.model)

        # Set the authorization dynamic attribute as a nested form class based on the handler name.
        attribute(:authorization, Decidim::AuthorizationHandler.handler_for(attributes.dig(:authorization, :handler_name)))

        super
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
decidim-admin-0.10.1 app/forms/decidim/admin/managed_user_form.rb
decidim-admin-0.10.0 app/forms/decidim/admin/managed_user_form.rb
decidim-admin-0.9.3 app/forms/decidim/admin/managed_user_form.rb
decidim-admin-0.9.2 app/forms/decidim/admin/managed_user_form.rb
decidim-admin-0.9.1 app/forms/decidim/admin/managed_user_form.rb
decidim-admin-0.9.0 app/forms/decidim/admin/managed_user_form.rb