lib/fcrepo_admin/configurable.rb in fcrepo_admin-0.5.3 vs lib/fcrepo_admin/configurable.rb in fcrepo_admin-0.5.4
- old
+ new
@@ -45,15 +45,15 @@
# Methods on ActiveFedora::Base objects that represent Fcrepo object properties
mattr_accessor :object_properties
self.object_properties = [:label, :state, :create_date, :modified_date, :owner_id]
- # Number of objects to display per page on associations show view
- mattr_accessor :associated_objects_per_page
- self.associated_objects_per_page = 10
+ # Number of documents to display per page on associations show view
+ mattr_accessor :association_show_docs_per_page
+ self.association_show_docs_per_page = 10
- # Solr sort param added to association collection query
- mattr_accessor :associated_objects_sort_param
- self.associated_objects_sort_param = nil
+ # Solr sort param added to query for association target documents when target is a collection
+ mattr_accessor :association_collection_query_sort_param
+ self.association_collection_query_sort_param = nil
end
end