mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-17 16:52:09 +00:00
20 lines
349 B
JavaScript
20 lines
349 B
JavaScript
|
define([
|
||
|
'underscore',
|
||
|
'backbone',
|
||
|
'app/models/group'
|
||
|
], function(_, Backbone, Group) {
|
||
|
'use strict';
|
||
|
|
||
|
var GroupCollection = Backbone.Collection.extend({
|
||
|
model: Group,
|
||
|
url: app.config.siteRoot + 'api2/groups/?with_msg=false',
|
||
|
|
||
|
initialize: function() {
|
||
|
|
||
|
}
|
||
|
|
||
|
});
|
||
|
|
||
|
return GroupCollection;
|
||
|
});
|