duke-libraries/ddr-models

View on GitHub
lib/ddr/datastreams/structural_metadata_datastream.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "rdf/vocab"

module Ddr
  module Datastreams
    class StructuralMetadataDatastream < ActiveFedora::Datastream
      def self.default_attributes
        super.merge({ mimeType: 'text/xml', dsLabel: 'Structural metadata for this object' })
      end
    end
  end
end