Sha256: 9cf2c880f5c50ff7ee4d1a010d5a276530ee735c83cf7a28c3d8e43a2a7ae820

Contents?: true

Size: 641 Bytes

Versions: 16

Compression:

Stored size: 641 Bytes

Contents

;(function() {
  "use strict";

  // Service for managing remote Comments
  function Comments($resource) {
    var CommentResource = $resource('/social_networking/comments/:id',
      { id: '@id' });

    function Comment() {}

    // Persist a Comment to the server.
    Comment.create = function(attributes) {
      var comment = new CommentResource({
        text: attributes.text,
        itemType: attributes.itemType,
        itemId: attributes.itemId
      });
      return comment.$save();
    };

    return Comment;
  }

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

Version data entries

16 entries across 16 versions & 1 rubygems

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