Sha256: 9846b0e27665a5b2a5632072deade0c13322ac91479007710b2d7134a38e46b1

Contents?: true

Size: 976 Bytes

Versions: 20

Compression:

Stored size: 976 Bytes

Contents

;(function() {
    'use strict';

    function Profiles($resource) {
        var ProfileResource = $resource('/social_networking/profiles/:id', {
            id: '@id' }, {
            'update': {method: 'PUT'}
        });
        var ProfilesResource = $resource('/social_networking/profiles');

        function Profile() {}

        Profile.getAll = function() {
            return ProfilesResource.query().$promise;
        };

        Profile.getOne = function(id) {
            return ProfileResource.get({ id: id }).$promise;
        };

        // Update a Goal on the server.
        Profile.update = function(attributes) {
            var profile = new ProfileResource();
            return profile.$update({
                id: attributes.profile.id,
                icon_name: attributes.iconSrc
            });
        };

        return Profile;
    }

    angular.module('socialNetworking.services')
        .service('Profiles', ['$resource', Profiles]);
})();

Version data entries

20 entries across 16 versions & 1 rubygems

Version Path
social_networking-0.13.3 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.13.2 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.13.1 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.13.0 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.12.0 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.8 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.7 spec/dummy/tmp/jasmine/assets/social_networking/resources/profiles-resource.js
social_networking-0.11.7 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.6 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.6 spec/dummy/tmp/jasmine/assets/social_networking/resources/profiles-resource.js
social_networking-0.11.5 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.4 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.3 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.2 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.2 spec/dummy/tmp/jasmine/assets/social_networking/resources/profiles-resource.js
social_networking-0.11.1 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.11.1 spec/dummy/tmp/jasmine/assets/social_networking/resources/profiles-resource.js
social_networking-0.11.0 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.10.0 app/assets/javascripts/social_networking/resources/profiles-resource.js
social_networking-0.9.3 app/assets/javascripts/social_networking/resources/profiles-resource.js