mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +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;
|
|
});
|