api/app/controllers/spree/api/v2/platform/stock_locations_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Spree
  module Api
    module V2
      module Platform
        class StockLocationsController < ResourceController
          private

          def model_class
            Spree::StockLocation
          end

          def scope_includes
            [:country]
          end
        end
      end
    end
  end
end