mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-09 11:03:17 +00:00
14 lines
280 B
JavaScript
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;
|
|
});
|