Sha256: 62410e8cb27c9c0c7aa40eb5cd075bd4840a226ee41bb9504678f097738fcb38

Contents?: true

Size: 573 Bytes

Versions: 20

Compression:

Stored size: 573 Bytes

Contents

;(function() {
  "use strict";

  // Service for managing remote Likes.
  function Likes($resource) {
    var LikeResource = $resource('/social_networking/likes/:id',
      { id: '@id' });

    function Like() {}

    // Persist a Like to the server.
    Like.create = function(attributes) {
      var like = new LikeResource({
        itemType: attributes.itemType,
        itemId: attributes.itemId
      });

      return like.$save();
    };

    return Like;
  }

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

Version data entries

20 entries across 16 versions & 1 rubygems

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