Files
Phraseanet/www/scripts/models/dcField.js
Nicolas Le Goff 0539db7598 Add global register feature
Tweak admin field app

Fix typo

Tweaks

Fix typo
2013-05-27 23:26:48 +02:00

14 lines
280 B
JavaScript

define([
"underscore",
"backbone"
], function(_, Backbone) {
var DcFieldModel = Backbone.Model.extend({
urlRoot: function () {
return "/admin/fields/dc-fields";
}
});
// Return the model for the module
return DcFieldModel;
});