Sha256: 8b9dc829bcddd5b4d944110efcd5c1d201c595a98090d9a715024d816f269c59
Contents?: true
Size: 668 Bytes
Versions: 20
Compression:
Stored size: 668 Bytes
Contents
CanonicalRails.setup do |config| # http://en.wikipedia.org/wiki/URL_normalization # Trailing slash represents semantics of a directory, ie a collection view - implying an :index get route; # otherwise we have to assume semantics of an instance of a resource type, a member view - implying a :show get route # # Acts as a whitelist for routes to have trailing slashes config.collection_actions # = [:index] # Parameter spamming can cause index dilution by creating seemingly different URLs with identical or near-identical content. # Unless whitelisted, these parameters will be omitted config.allowed_parameters = [:keywords, :search, :taxon] end
Version data entries
20 entries across 20 versions & 2 rubygems