app/controllers/concerns/blacklight/base.rb in blacklight-7.33.1 vs app/controllers/concerns/blacklight/base.rb in blacklight-7.34.0
- old
+ new
@@ -2,6 +2,11 @@
module Blacklight::Base
extend ActiveSupport::Concern
include Blacklight::Configurable
include Blacklight::SearchContext
+
+ def self.included(mod)
+ Deprecation.warn(Blacklight::Base, "Blacklight::Base is deprecated and will be removed in Blacklight 8.0.0.
+ Include Blacklight::Configurable and Blacklight::SearchContext as needed (included in #{mod}).")
+ end
end