1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-16 00:06:11 +00:00
seahub/static/scripts/app/collections/group-repos.js
2015-04-22 15:31:46 +08:00

23 lines
388 B
JavaScript

define([
'underscore',
'backbone',
'app/models/group-repo'
], function(_, Backbone, GroupRepo) {
'use strict';
var GroupRepoCollection = Backbone.Collection.extend({
model: GroupRepo,
url: app.pageOptions.groupReposUrl,
comparator: -'mtime',
// initialize: function( ) {
// },
});
return GroupRepoCollection;
});