1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-23 03:40:45 -04:00
tootlab-mastodon/app/lib/inline_renderer.rb

14 lines
283 B
Ruby

# frozen_string_literal: true
class InlineRenderer
def self.render(status, current_account, template)
Rabl::Renderer.new(
template,
status,
view_path: 'app/views',
format: :json,
scope: InlineRablScope.new(current_account)
).render
end
end