about summary refs log tree commit diff
path: root/app/lib/inline_renderer.rb
blob: 8e04ad1d5514dd8474d936fed8eb15dba882a7bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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