1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-25 14:43:15 +00:00
seahub/static/scripts/app/models/group-repo.js

18 lines
315 B
JavaScript
Raw Normal View History

2015-01-21 14:22:34 +00:00
define([
'underscore',
'backbone',
'app/models/repo'
], function(_, Backbone, Repo) {
2015-01-21 14:22:34 +00:00
'use strict';
var GroupRepo = Repo.extend({
2015-01-21 14:22:34 +00:00
defaults: {
2015-01-27 09:32:31 +00:00
permission: "r",
2015-01-21 14:22:34 +00:00
}
});
_.extend(GroupRepo.prototype.defaults, Repo.prototype.defaults);
2015-01-21 14:22:34 +00:00
return GroupRepo;
});