mirror of
https://github.com/discourse/discourse.git
synced 2025-05-31 00:42:47 +08:00
Revert "FEATURE: Site settings defaults per locale"
This reverts commit 468a8fcd206d14ff4421758e840d63a27c246254.
This commit is contained in:
@ -1,32 +0,0 @@
|
||||
require 'ruby-prof'
|
||||
|
||||
def profile(&blk)
|
||||
result = RubyProf.profile(&blk)
|
||||
printer = RubyProf::GraphHtmlPrinter.new(result)
|
||||
printer.print(STDOUT)
|
||||
end
|
||||
profile { '' } # loading profiler dependency
|
||||
|
||||
require File.expand_path('../../../../config/environment', __FILE__)
|
||||
|
||||
# warming up
|
||||
SiteSetting.title
|
||||
SiteSetting.enable_sso
|
||||
SiteSetting.default_locale = SiteSetting.default_locale == 'en' ? 'zh_CN' : 'en'
|
||||
SiteSetting.title = SecureRandom.hex
|
||||
|
||||
profile do
|
||||
SiteSetting.title
|
||||
end
|
||||
|
||||
profile do
|
||||
SiteSetting.enable_sso
|
||||
end
|
||||
|
||||
profile do
|
||||
SiteSetting.default_locale = SiteSetting.default_locale == 'en' ? 'zh_CN' : 'en'
|
||||
end
|
||||
|
||||
profile do
|
||||
SiteSetting.title = SecureRandom.hex
|
||||
end
|
Reference in New Issue
Block a user