1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-27 07:28:42 +00:00
seahub/static/scripts/app/collections/group-repos.js

29 lines
638 B
JavaScript

define([
'underscore',
'backbone',
'common',
'app/models/group-repo'
], function(_, Backbone, Common, GroupRepo) {
'use strict';
var GroupRepoCollection = Backbone.Collection.extend({
model: GroupRepo,
comparator: -'mtime',
url: function() {
return Common.getUrl({name: 'group_repos', group_id: this.group_id});
},
parse: function(data) {
this.is_staff = data.is_staff;
return data.repos;
},
setGroupID: function(group_id) {
this.group_id = group_id;
}
});
return GroupRepoCollection;
});