1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 16:31:13 +00:00

add admin role/log feature

This commit is contained in:
lian
2017-09-09 15:27:04 +08:00
parent 91dc4238c6
commit bc492b9010
39 changed files with 1663 additions and 167 deletions

View File

@@ -0,0 +1,11 @@
define([
'underscore',
'backbone',
'common',
], function(_, Backbone, Common) {
'use strict';
var AdminLogModel = Backbone.Model.extend({});
return AdminLogModel;
});