1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-13 13:50:07 +00:00
This commit is contained in:
zhengxie
2015-01-21 22:22:34 +08:00
committed by Daniel Pan
parent 92be0754bd
commit 26e26ac22d
12 changed files with 361 additions and 115 deletions

View File

@@ -0,0 +1,22 @@
define([
'underscore',
'backbone'
], function(_, Backbone) {
'use strict';
var GroupRepo = Backbone.Model.extend({
defaults: {
id: "",
name: "",
desc: "",
mtime: "",
encrypted: false,
permission: "",
owner: gettext("Unknown")
}
});
return GroupRepo;
});