2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-03-21 15:28:52 +01:00
|
|
|
Rails.application.config.to_prepare do
|
|
|
|
if Rails.env.development? && SiteSetting.port.to_i > 0
|
|
|
|
Onebox.options = {
|
|
|
|
twitter_client: TwitterApi,
|
|
|
|
redirect_limit: 3,
|
2024-07-24 04:45:30 +05:30
|
|
|
user_agent: "Discourse Forum Onebox",
|
2022-03-21 15:28:52 +01:00
|
|
|
allowed_ports: [80, 443, SiteSetting.port.to_i],
|
|
|
|
}
|
|
|
|
else
|
|
|
|
Onebox.options = {
|
|
|
|
twitter_client: TwitterApi,
|
|
|
|
redirect_limit: 3,
|
2024-07-24 04:45:30 +05:30
|
|
|
user_agent: "Discourse Forum Onebox",
|
2022-03-21 15:28:52 +01:00
|
|
|
}
|
|
|
|
end
|
2019-11-07 15:42:11 +05:30
|
|
|
end
|