UNC-Libraries/hy-c

View on GitHub
app/models/cdr_list_set.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
80%
# frozen_string_literal: true
class CdrListSet < ::BlacklightOaiProvider::SolrSet
  def description
    if label && value
      "This set includes works in the #{value} #{label}."
    else
      'No description available.'
    end
  end
end