1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-30 22:34:53 +00:00
seahub/media/scripts/app/collections/group-repos.js

15 lines
307 B
JavaScript
Raw Normal View History

2015-01-21 14:22:34 +00:00
define([
'underscore',
'backbone',
'app/models/group-repo'
], function(_, Backbone, GroupRepo) {
'use strict';
var GroupRepoCollection = Backbone.Collection.extend({
model: GroupRepo,
url: app.pageOptions.groupReposUrl
});
return new GroupRepoCollection();
});