1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-24 22:22:38 +00:00
seahub/static/scripts/app/models/activity.js

11 lines
160 B
JavaScript
Raw Normal View History

2015-07-24 03:37:57 +00:00
define([
'underscore',
'backbone'
], function(_, Backbone) {
'use strict';
var Activity = Backbone.Model.extend({});
return Activity;
});