mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 20:43:25 +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;
|
|
});
|