lib/fcrepo_admin/configurable.rb in fcrepo_admin-0.5.2 vs lib/fcrepo_admin/configurable.rb in fcrepo_admin-0.5.3
- old
+ new
@@ -45,11 +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 object associations show view
+ # Number of objects to display per page on associations show view
mattr_accessor :associated_objects_per_page
self.associated_objects_per_page = 10
+
+ # Solr sort param added to association collection query
+ mattr_accessor :associated_objects_sort_param
+ self.associated_objects_sort_param = nil
end
end