mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-06 17:43:46 +00:00
18 lines
418 B
JavaScript
18 lines
418 B
JavaScript
|
define([
|
||
|
'underscore',
|
||
|
'backbone',
|
||
|
'common',
|
||
|
'sysadmin-app/models/trash-library'
|
||
|
], function(_, Backbone, Common, TrashLibraryModel) {
|
||
|
'use strict';
|
||
|
|
||
|
var TrashLibraryCollection = Backbone.Collection.extend({
|
||
|
model: TrashLibraryModel,
|
||
|
url: function () {
|
||
|
return Common.getUrl({name: 'admin-trash-libraries'});
|
||
|
}
|
||
|
});
|
||
|
|
||
|
return TrashLibraryCollection;
|
||
|
});
|