This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-02-10 17:12:05 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module StreamEntryRenderer
|
|
|
|
def stream_entry_to_xml(stream_entry)
|
2017-07-18 16:37:26 -07:00
|
|
|
OStatus::AtomSerializer.render(OStatus::AtomSerializer.new.entry(stream_entry, true))
|
2017-02-10 17:12:05 -08:00
|
|
|
end
|
|
|
|
end
|