diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 22:21:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 22:21:21 -0400 |
commit | fef478781d1033ba045806945f84cbab1bdb0007 (patch) | |
tree | cf99ed9130e2226f13e52f87dc7bbe8a9b464ee2 /app/controllers/stream_entries_controller.rb | |
parent | bf7cefa516075b480fd5da5ea4b1385d7d17bdd5 (diff) | |
parent | c1a553d2c274941f38cc299699dfae1f60559e67 (diff) |
Merge branch 'master' into master
Diffstat (limited to 'app/controllers/stream_entries_controller.rb')
-rw-r--r-- | app/controllers/stream_entries_controller.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/stream_entries_controller.rb b/app/controllers/stream_entries_controller.rb index de38b3602..469a8c33e 100644 --- a/app/controllers/stream_entries_controller.rb +++ b/app/controllers/stream_entries_controller.rb @@ -19,7 +19,9 @@ class StreamEntriesController < ApplicationController end end - format.atom + format.atom do + render xml: AtomSerializer.render(AtomSerializer.new.entry(@stream_entry, true)) + end end end |