1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-30 08:53:49 +00:00
seahub/static/scripts/app/collections/share-admin-repos.js
2016-06-30 15:06:43 +08:00

21 lines
408 B
JavaScript

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