pragmarb/pragma-decorator

View on GitHub
lib/pragma/decorator/association/expander/poro.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Pragma
  module Decorator
    module Association
      module Expander
        class Poro < Base
          class << self
            def supports?(_relation)
              true
            end
          end

          def include_associations(_expands)
            relation
          end
        end
      end
    end
  end
end