Sha256: 32bb336cc635422ae7570ceed580e776e9f3a3ef67780faee7d0b6655f4d876c
Contents?: true
Size: 868 Bytes
Versions: 64
Compression:
Stored size: 868 Bytes
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses 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: Decidim::ParticipatoryProcessUserRole::ROLES } def roles Decidim::ParticipatoryProcessUserRole::ROLES.map do |role| [ I18n.t(role, scope: "decidim.admin.models.participatory_process_user_role.roles"), role ] end end end end end end
Version data entries
64 entries across 64 versions & 2 rubygems