api/app/controllers/concerns/spree/api/v2/number_resource.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  module Api
    module V2
      module NumberResource
        def resource
          @resource ||= scope.find_by(number: params[:id]) || scope.find(params[:id])
        end
      end
    end
  end
end