1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 07:01:12 +00:00

Implement Sysinfo

This commit is contained in:
Daniel Pan
2016-03-16 16:21:53 +08:00
committed by lian
parent 899f5241d4
commit bcc4e42142
9 changed files with 240 additions and 6 deletions

View File

@@ -0,0 +1,17 @@
define([
'underscore',
'backbone',
'common'
], function(_, Backbone, Common) {
'use strict';
var SysInfo = Backbone.Model.extend({
url: function () {
return Common.getUrl({name: 'sysinfo'});
},
});
return SysInfo;
});