1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-28 07:57:50 +00:00
seahub/static/scripts/app/models/group-discussion.js

12 lines
196 B
JavaScript
Raw Normal View History

2016-03-08 05:36:58 +00:00
define([
'underscore',
2016-03-18 03:21:26 +00:00
'backbone',
'common'
], function(_, Backbone, Common) {
2016-03-08 05:36:58 +00:00
'use strict';
var GroupDiscussion = Backbone.Model.extend({});
return GroupDiscussion;
});