1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-08 10:22:46 +00:00

Enable create group repo

This commit is contained in:
zhengxie
2015-01-27 17:32:31 +08:00
committed by Daniel Pan
parent 5aab457e95
commit 7920f11b41
8 changed files with 121 additions and 100 deletions

View File

@@ -7,13 +7,14 @@ define([
var GroupRepo = Backbone.Model.extend({
defaults: {
id: "",
id: null,
name: "",
desc: "",
mtime: "",
mtime: 0,
encrypted: false,
permission: "",
owner: gettext("Unknown")
permission: "r",
owner: "-",
owner_nickname: "-"
}
});