Hey Everyone,
I was adding an atom feed to a rails application and noticed something:
According to the docs
auto_discovery_link_tag(:atom, {controller: "home", action:
“public_archives”})`
Should return
<link rel="alternate" type="application/atom+xml" title="ATOM"
href=“http://www.currenthost.com/home/public_archives” />
but I’m getting just the host without the controller or action.
<link href="http://currenhost.com/" rel="alternate" title="ATOM"
type=“application/atom+xml” />
Would anyone mind pointing me in what I might be doing wrong? I also
cross
posted this question on Stack Overflow if you want the rep.
Sunny Juneja