Files
dss.web/client/app/models/comment.js
2016-09-16 22:05:45 +01:00

12 lines
270 B
JavaScript

angular.module('dssWebApp')
.factory('CommentModel', function (DS, logger) {
var count = 0;
var next = "";
var previous = "";
return DS.defineResource({
name: 'comments',
idAttribute: 'id'
});
});