Sha256: c69b4a63bc280b7bbd264cd01ab0c5370c687e7dc0a3ba548ddf9417f8ce1af0
Contents?: true
Size: 561 Bytes
Versions: 49
Compression:
Stored size: 561 Bytes
Contents
# frozen_string_literal: true module Blacklight class Configuration::SortField < Blacklight::Configuration::Field # @!attribute sort # @return [String] the sort specification to use; defaults to the value of field (which is used in the user-facing parameters) def normalize! blacklight_config = nil super self.field ||= label&.parameterize self.field ||= sort self.sort ||= self.field self end def validate! raise ArgumentError.new, "Must supply a sort string" if self.sort.nil? end end end
Version data entries
49 entries across 49 versions & 2 rubygems