1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-19 03:42:52 +00:00
seahub/static/scripts/sysadmin-app/models/sysinfo.js

18 lines
278 B
JavaScript
Raw Normal View History

2016-03-16 08:21:53 +00:00
define([
'underscore',
'backbone',
'common'
], function(_, Backbone, Common) {
'use strict';
var SysInfo = Backbone.Model.extend({
url: function () {
return Common.getUrl({name: 'sysinfo'});
},
});
return SysInfo;
});