mirror of https://github.com/mastodon/mastodon
Changing the use of config constants to the Rails configuration object
parent
0e8f59c16f
commit
23d08c6749
@ -1,9 +1,9 @@
|
|||||||
Nokogiri::XML::Builder.new do |xml|
|
Nokogiri::XML::Builder.new do |xml|
|
||||||
entry(xml, true) do
|
entry(xml, true) do
|
||||||
author(xml) do
|
author(xml) do
|
||||||
include_author xml, @entry.account
|
include_author xml, @stream_entry.account
|
||||||
end
|
end
|
||||||
|
|
||||||
include_entry xml, @entry
|
include_entry xml, @stream_entry
|
||||||
end
|
end
|
||||||
end.to_xml
|
end.to_xml
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
LOCAL_DOMAIN = ENV['LOCAL_DOMAIN'] || 'localhost'
|
|
||||||
HUB_URL = ENV['HUB_URL'] || 'https://pubsubhubbub.superfeedr.com'
|
|
||||||
CANONICAL_PROTOCOL = ENV['LOCAL_HTTPS'] == 'true' ? 'https://' : 'http://'
|
|
||||||
|
|
||||||
Rails.application.configure do
|
Rails.application.configure do
|
||||||
config.action_mailer.default_url_options = { host: LOCAL_DOMAIN, protocol: CANONICAL_PROTOCOL }
|
config.x.local_domain = ENV['LOCAL_DOMAIN'] || 'localhost'
|
||||||
|
config.x.hub_url = ENV['HUB_URL'] || 'https://pubsubhubbub.superfeedr.com'
|
||||||
|
config.x.use_https = ENV['LOCAL_HTTPS'] == 'true'
|
||||||
|
|
||||||
|
config.action_mailer.default_url_options = { host: config.x.local_domain, protocol: config.x.use_https ? 'https://' : 'http://' }
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue