mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-13 13:50:07 +00:00
tmp mod
This commit is contained in:
22
media/scripts/app/models/group-repo.js
Normal file
22
media/scripts/app/models/group-repo.js
Normal 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;
|
||||
});
|
Reference in New Issue
Block a user