alessandro1997/panther

View on GitHub
lib/panther/representer/base.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module Panther
  module Representer
    class Base < Roar::Decorator
      include Roar::JSON

      defaults render_nil: true
    end
  end
end