Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/stripe/module-payments/view/base/web/js/action/
Upload File :
Current File : //home/rtorresani/www/vendor/stripe/module-payments/view/base/web/js/action/add-payment-method.js

define(
    [
        'mage/url',
        'mage/storage'
    ],
    function (
        urlBuilder,
        storage
    ) {
        'use strict';
        return function (paymentMethodId, callback)
        {
            var serviceUrl = urlBuilder.build('rest/V1/stripe/payments/add_payment_method');

            var payload = {
                paymentMethodId: paymentMethodId
            };

            return storage.post(serviceUrl, JSON.stringify(payload)).always(callback);
        };
    }
);