Files
Phraseanet/www/scripts/models/task.js
2014-02-14 16:55:45 +01:00

35 lines
875 B
JavaScript

/*
* This file is part of Phraseanet
*
* (c) 2005-2014 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
define([
"underscore",
"backbone"
], function (_, Backbone) {
var TaskModel = Backbone.Model.extend({
sync: function(method, model, options) {
var options = options || {};
options.Accept = 'application/json';
return Backbone.sync(method, model, options);
},
urlRoot: function () {
return "/admin/task-manager/" + this.get("id");
},
defaults: {
"id" : null,
"name" : null,
"configuration": null,
"actual": null,
"process-id": null
}
});
// Return the model for the module
return TaskModel;
});