mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-01 07:01:12 +00:00
Implement Sysinfo
This commit is contained in:
17
static/scripts/sysadmin-app/models/sysinfo.js
Normal file
17
static/scripts/sysadmin-app/models/sysinfo.js
Normal 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;
|
||||
});
|
Reference in New Issue
Block a user