lib/blacklight/abstract_repository.rb in blacklight-7.0.0.rc1 vs lib/blacklight/abstract_repository.rb in blacklight-7.0.0.rc2

- old
+ new

@@ -30,9 +30,21 @@ # @param [Hash] params query parameters def search(_params = {}) raise NotImplementedError end + # 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