Sha256: e4bee5bb253c67c2256501584942f38b7995acaa34d82d2d204320e71dc290d2
Contents?: true
Size: 534 Bytes
Versions: 29
Compression:
Stored size: 534 Bytes
Contents
# frozen_string_literal: true module Hyrax module Forms module Admin class CollectionTypeParticipantForm include ActiveModel::Model attr_accessor :collection_type_participant validates :agent_id, presence: true validates :agent_type, presence: true validates :access, presence: true validates :hyrax_collection_type_id, presence: true delegate :agent_id, :agent_type, :access, :hyrax_collection_type_id, to: :collection_type_participant end end end end
Version data entries
29 entries across 29 versions & 1 rubygems