mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 22:14:34 +00:00
14 lines
283 B
Ruby
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
|