mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 19:13:26 +00:00
Use backbone to display taskmanager front end
This commit is contained in:
34
www/scripts/models/scheduler.js
Normal file
34
www/scripts/models/scheduler.js
Normal file
@@ -0,0 +1,34 @@
|
||||
/*
|
||||
* 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/scheduler";
|
||||
},
|
||||
defaults: {
|
||||
"name" : null,
|
||||
"configuration": null,
|
||||
"actual": null,
|
||||
"process-id": null
|
||||
}
|
||||
});
|
||||
|
||||
// Return the model for the module
|
||||
return TaskModel;
|
||||
});
|
||||
|
Reference in New Issue
Block a user