sul-dlss/argo

View on GitHub
app/helpers/profile_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module ProfileHelper
  include Blacklight::CatalogHelperBehavior
  ##
  # Kind of a hacky override, but better than overriding additional partials
  # Don't show pagination for ProfileController requests
  def show_pagination?(*)
    return false if params['controller'] == 'profile'

    super
  end
end