diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 22:15:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 22:15:55 -0400 |
commit | 1b42f717f2c44bb0c85dfc8e8b40790b12d45993 (patch) | |
tree | 852b1ccaeb7c5eeae530c66eb1a97462b2dd7831 /app/controllers/stream_entries_controller.rb | |
parent | eb98c99924ab810eea8a97040a82308f68c805cc (diff) | |
parent | 7004c692040d9372c187a13a21f1215f07d3a8ff (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 |