mirror of
https://github.com/fergalmoran/dss.web.git
synced 2026-02-15 12:34:17 +00:00
12 lines
270 B
JavaScript
Executable File
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'
|
|
});
|
|
});
|