Sha256: badbfbd55b7251526da6d6b36862f2d8def6709097c5bd83c0a60390c0831787
Contents?: true
Size: 504 Bytes
Versions: 36
Compression:
Stored size: 504 Bytes
Contents
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
36 entries across 36 versions & 1 rubygems