1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00
Files
seahub/static/scripts/sysadmin-app/models/system-repo.js

12 lines
186 B
JavaScript
Raw Normal View History

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