Sha256: fe2b194658c8f2639d36d472615d45d6534ccab733a5b23662491389188f77bb

Contents?: true

Size: 769 Bytes

Versions: 62

Compression:

Stored size: 769 Bytes

Contents

// TODO v4 rewrite to not assign directly to currentUser. Use closure instead.
/**
 * @namespace WORKAREA.currentUser
 */
WORKAREA.registerModule('currentUser', (function () {
    'use strict';

    var refresh = function() {
        return $.getJSON(
            WORKAREA.routes.storefront.currentUserPath({ format: 'json' }),
            function (result) { _.assign(WORKAREA.currentUser, result); }
        );
    };

    /**
     * @method
     * @name gettingUserData
     * @memberof WORKAREA.currentUser
     */

    return {
        refresh: refresh,
        gettingUserData: $.getJSON(
            WORKAREA.routes.storefront.currentUserPath({ format: 'json' }),
            function (result) { _.assign(WORKAREA.currentUser, result); }
        )
    };
}()));

Version data entries

62 entries across 62 versions & 1 rubygems

Version Path
workarea-storefront-3.5.27 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.26 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.45 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.25 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.23 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.44 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.22 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.43 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.21 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.42 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.20 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.41 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.19 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.40 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.18 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.39 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.17 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.38 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.5.16 app/assets/javascripts/workarea/storefront/modules/current_user.js
workarea-storefront-3.4.37 app/assets/javascripts/workarea/storefront/modules/current_user.js