1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-17 16:52:09 +00:00
seahub/static/scripts/app/collections/group-changes.js

20 lines
366 B
JavaScript
Raw Normal View History

2015-01-29 06:45:26 +00:00
define([
'underscore',
'backbone',
'app/models/group-change'
], function(_, Backbone, GroupChange) {
'use strict';
var GroupChangeCollection = Backbone.Collection.extend({
model: GroupChange,
url: app.pageOptions.groupChangesUrl,
initialize: function() {
}
});
return new GroupChangeCollection();
});