1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-27 23:56:18 +00:00

rewrite repo-list-view

This commit is contained in:
shanshuirenjia
2018-12-08 08:37:18 +08:00
parent 7a6a989e46
commit 5934d62bde
11 changed files with 516 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
class Group {
constructor(object) {
this.id= object.id;
this.name = object.name;
this.owner = object.owner;
this.admins = object.admins;
this.avatar_url = object.avatar_url;
this.created_at = object.created_at;
this.parent_group_id = object.parent_group_id;
this.wiki_enabled = object.wiki_enabled;
}
}
export default Group;