1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-19 20:03:03 +00:00
seahub/static/scripts/sysadmin-app/models/admin-operation-log.js

12 lines
193 B
JavaScript
Raw Normal View History

2017-03-09 09:42:59 +00:00
define([
'underscore',
'backbone',
'common',
], function(_, Backbone, Common) {
'use strict';
var AdminLogModel = Backbone.Model.extend({});
return AdminLogModel;
});