From a12d50c5e5ebba17e6e16d3d628f449caf24b6d2 Mon Sep 17 00:00:00 2001 From: Douwe Maan Date: Thu, 23 Apr 2015 17:10:35 +0200 Subject: Remove unnecessary private_token params. --- app/views/groups/issues.atom.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/groups/issues.atom.builder') diff --git a/app/views/groups/issues.atom.builder b/app/views/groups/issues.atom.builder index 74f9389b914..66fe7e25871 100644 --- a/app/views/groups/issues.atom.builder +++ b/app/views/groups/issues.atom.builder @@ -2,7 +2,7 @@ xml.instruct! xml.feed "xmlns" => "http://www.w3.org/2005/Atom", "xmlns:media" => "http://search.yahoo.com/mrss/" do xml.title "#{@user.name} issues" xml.link href: issues_dashboard_url(format: :atom, private_token: @user.private_token), rel: "self", type: "application/atom+xml" - xml.link href: issues_dashboard_url(private_token: @user.private_token), rel: "alternate", type: "text/html" + xml.link href: issues_dashboard_url, rel: "alternate", type: "text/html" xml.id issues_dashboard_url xml.updated @issues.first.created_at.strftime("%Y-%m-%dT%H:%M:%SZ") if @issues.any? -- cgit v1.2.1