From 23d08c6749eb142b24f22045f643d0591af579ff Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 29 Feb 2016 20:06:39 +0100 Subject: Changing the use of config constants to the Rails configuration object --- app/views/accounts/show.atom.ruby | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/accounts/show.atom.ruby') diff --git a/app/views/accounts/show.atom.ruby b/app/views/accounts/show.atom.ruby index 12d2bb233..54f1185e4 100644 --- a/app/views/accounts/show.atom.ruby +++ b/app/views/accounts/show.atom.ruby @@ -12,7 +12,7 @@ Nokogiri::XML::Builder.new do |xml| link_alternate xml, url_for_target(@account) link_self xml, account_url(@account, format: 'atom') - link_hub xml, HUB_URL + link_hub xml, Rails.configuration.x.hub_url link_salmon xml, api_salmon_url(@account.id) @account.stream_entries.order('id desc').each do |stream_entry| -- cgit