Files
dss.web/client/app/models/comment.js
Fergal Moran d2c529bafe Screw you git!
2015-12-01 19:50:20 +00:00

12 lines
270 B
JavaScript
Executable File

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