1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-24 22:22:38 +00:00
seahub/static/scripts/app/models/group-repo.js

18 lines
314 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-06-10 05:43:41 +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;
});