1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-26 15:26:19 +00:00

[dist] Add static files to media/assets

This commit is contained in:
zhengxie
2015-04-28 16:43:28 +08:00
parent 16ec8ed587
commit e5efbfa5c3
253 changed files with 66886 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
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;
});