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

18 lines
309 B
JavaScript
Raw Normal View History

2015-04-03 09:01:13 +00:00
define([
'underscore',
'backbone',
'app/models/repo'
], function(_, Backbone, Repo) {
'use strict';
var PubRepo = Repo.extend({
defaults: {
permission: "r",
}
});
_.extend(PubRepo.prototype.defaults, Repo.prototype.defaults);
return PubRepo;
});