Sha256: 4d6c354b12097ccd71843695caacf60ee4f77c429942fb517af848489cfbed7a
Contents?: true
Size: 715 Bytes
Versions: 2
Compression:
Stored size: 715 Bytes
Contents
ActiveFedora::Base.class_eval do def active? state == 'A' end def auditable? begin self.is_a? ActiveFedora::Auditable rescue false end end def has_permissions? self.is_a? Hydra::ModelMixins::RightsMetadata end def governable? !governed_by_association.nil? end def governed_by_association self.reflections.each do |name, reflection| # FIXME add class name condition, i.e.: # && reflection.class_name == [Hydra configured policy class or Hydra::AdminPolicy] return reflection if reflection.macro == :belongs_to && reflection.options[:property] == :is_governed_by end end def object_xml inner_object.object_xml end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fcrepo_admin-0.5.5 | lib/fcrepo_admin/decorators/active_fedora/base_decorator.rb |
fcrepo_admin-0.5.5.pre | lib/fcrepo_admin/decorators/active_fedora/base_decorator.rb |