lib/blacklight/abstract_repository.rb in blacklight-6.18.0 vs lib/blacklight/abstract_repository.rb in blacklight-6.19.0
- old
+ new
@@ -30,10 +30,22 @@
# @param [Hash] params query parameters
def search(params = {})
raise NotImplementedError
end
- protected
+ # Query the fields that exist from the index
+ # @return [Hash]
+ def reflect_fields
+ raise NotImplementedError
+ end
+
+ ##
+ # Is the repository in a working state?
+ def ping
+ raise NotImplementedError
+ end
+
+ private
def connection_config
blacklight_config.connection_config
end