mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-24 06:09:07 +00:00
18 lines
314 B
JavaScript
18 lines
314 B
JavaScript
define([
|
|
'underscore',
|
|
'backbone',
|
|
'app/models/repo'
|
|
], function(_, Backbone, Repo) {
|
|
'use strict';
|
|
|
|
var GroupRepo = Repo.extend({
|
|
defaults: {
|
|
permission: "r"
|
|
}
|
|
});
|
|
|
|
_.extend(GroupRepo.prototype.defaults, Repo.prototype.defaults);
|
|
|
|
return GroupRepo;
|
|
});
|