UNPKG

@vendure/core

Version:

A modern, headless ecommerce framework

19 lines 663 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DefaultCustomerChannelAssignmentStrategy = void 0; /** * @description * The default {@link CustomerChannelAssignmentStrategy}: a Customer is auto-assigned to whichever * Channel they authenticate against. * * @docsCategory auth * @docsPage CustomerChannelAssignmentStrategy * @since 3.7.0 */ class DefaultCustomerChannelAssignmentStrategy { canAssignCustomerToChannel() { return true; } } exports.DefaultCustomerChannelAssignmentStrategy = DefaultCustomerChannelAssignmentStrategy; //# sourceMappingURL=default-customer-channel-assignment-strategy.js.map