Sha256: f41f887af0a561d6d6ce16515cb03bd3686165d75be25e0301a579a3876d5622
Contents?: true
Size: 784 Bytes
Versions: 10
Compression:
Stored size: 784 Bytes
Contents
# frozen_string_literal: true module Decidim module Admin # A form object used to create participatory process user roles from the # admin dashboard. # class ParticipatoryProcessUserRoleForm < Form mimic :participatory_process_user_role attribute :name, String attribute :email, String attribute :role, String validates :email, :role, presence: true validates :name, presence: true validates :role, inclusion: { in: ParticipatoryProcessUserRole::ROLES } def roles Decidim::Admin::ParticipatoryProcessUserRole::ROLES.map do |role| [ I18n.t(role, scope: "decidim.admin.models.participatory_process_user_role.roles"), role ] end end end end end
Version data entries
10 entries across 10 versions & 2 rubygems