1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-26 23:54:25 +01:00
OwncloudBookmarksOfficial/js/tagCollection.js
2015-12-20 22:00:17 +01:00

22 lines
370 B
JavaScript

/*
* Copyright (c) 2015
*
* This file is licensed under the Affero General Public License version 3
* or later.
*
* See the COPYING-README file.
*
*/
(function() {
var TagCollection = OC.Backbone.Collection.extend({
model: OCA.Bookmarks.TagModel,
url: 'tag'
});
OCA.Bookmarks = OCA.Bookmarks || {};
OCA.Bookmarks.TagCollection = TagCollection;
})();