mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-30 00:42:53 +00:00
21 lines
420 B
JavaScript
21 lines
420 B
JavaScript
|
define([
|
||
|
'underscore',
|
||
|
'backbone',
|
||
|
'common',
|
||
|
'app/models/share-admin-folder'
|
||
|
], function(_, Backbone, Common, ShareAdminFolder) {
|
||
|
'use strict';
|
||
|
|
||
|
var ShareAdminFolderCollection = Backbone.Collection.extend({
|
||
|
|
||
|
model: ShareAdminFolder,
|
||
|
|
||
|
url: function() {
|
||
|
return Common.getUrl({name: 'share_admin_folders'});
|
||
|
}
|
||
|
|
||
|
});
|
||
|
|
||
|
return ShareAdminFolderCollection;
|
||
|
});
|