1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-03 13:37:13 +00:00
seahub/static/scripts/sysadmin-app/models/system-repo.js

12 lines
186 B
JavaScript
Raw Normal View History

2016-05-25 02:45:22 +00:00
define([
'underscore',
'backbone',
'common'
], function(_, Backbone, Common) {
'use strict';
2016-05-27 08:42:40 +00:00
var SystemRepo = Backbone.Model.extend({});
2016-05-25 02:45:22 +00:00
2016-05-27 08:42:40 +00:00
return SystemRepo;
2016-05-25 02:45:22 +00:00
});