mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:21:55 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
10 lines
310 B
Ruby
10 lines
310 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Support for plugins to register custom setting providers. They can do this
|
|
# by having a file, `register_provider.rb` in their root that will be run
|
|
# at this point.
|
|
|
|
Dir.glob(File.join(File.dirname(__FILE__), '../plugins', '*', "register_provider.rb")) do |p|
|
|
require p
|
|
end
|