1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-21 12:48:24 +00:00
seahub/static/scripts/sysadmin-app/collection/trash-repos.js
2016-06-14 14:47:02 +08:00

18 lines
403 B
JavaScript

define([
'underscore',
'backbone',
'common',
'sysadmin-app/models/trash-repo'
], function(_, Backbone, Common, TrashRepoModel) {
'use strict';
var TrashRepoCollection = Backbone.Collection.extend({
model: TrashRepoModel,
url: function () {
return Common.getUrl({name: 'admin-trash-libraries'});
}
});
return TrashRepoCollection;
});