mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-12 20:43:25 +00:00
14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone'
|
|
], function(_, Backbone) {
|
|
var VocabularyModel = Backbone.Model.extend({
|
|
urlRoot: function () {
|
|
return '/admin/fields/vocabularies';
|
|
}
|
|
});
|
|
|
|
// Return the model for the module
|
|
return VocabularyModel;
|
|
});
|