mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
9 lines
348 B
Ruby
9 lines
348 B
Ruby
# frozen_string_literal: true
|
|
|
|
module StreamEntryRenderer
|
|
def stream_entry_to_xml(stream_entry)
|
|
renderer = StreamEntriesController.renderer.new(method: 'get', http_host: Rails.configuration.x.local_domain, https: Rails.configuration.x.use_https)
|
|
renderer.render(:show, assigns: { stream_entry: stream_entry }, formats: [:atom])
|
|
end
|
|
end
|