1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-17 16:13:50 -05:00

8 lines
198 B
Ruby
Raw Normal View History

2017-02-11 02:12:05 +01:00
# frozen_string_literal: true
module StreamEntryRenderer
def stream_entry_to_xml(stream_entry)
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.entry(stream_entry, true))
2017-02-11 02:12:05 +01:00
end
end