mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 21:43:18 +00:00

Add asset dependencies Add field model Add field tests Add field app Add JS build Add end file blank line Adjust asset dependencies version Remove assets test libraries from build Remove unecessary comments Add end file blank line Fix indent
12 lines
231 B
JavaScript
12 lines
231 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone'
|
|
], function(_, Backbone) {
|
|
var FieldModel = Backbone.Model.extend({
|
|
urlRoot: '/admin/fields/1/fields'
|
|
});
|
|
|
|
// Return the model for the module
|
|
return FieldModel;
|
|
});
|