Browse Source
feat: display group id in fontend (#10)
* feat: display group ID
* chore: update picture
pull/11/head
Aldino Kemal
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
1 deletions
-
readme.md
-
src/views/index.html
|
|
@ -66,7 +66,7 @@ You can check [docs/openapi.yml](./docs/openapi.yaml) for detail API |
|
|
6. User Info  |
|
|
6. User Info  |
|
|
6. User Avatar  |
|
|
6. User Avatar  |
|
|
7. User Privacy  |
|
|
7. User Privacy  |
|
|
8. User Group  |
|
|
|
|
|
|
|
|
8. User Group  |
|
|
|
|
|
|
|
|
### Mac OS NOTE |
|
|
### Mac OS NOTE |
|
|
|
|
|
|
|
|
|
|
|
@ -293,6 +293,7 @@ |
|
|
<table class="ui celled table" id="user_groups_table"> |
|
|
<table class="ui celled table" id="user_groups_table"> |
|
|
<thead> |
|
|
<thead> |
|
|
<tr> |
|
|
<tr> |
|
|
|
|
|
<th>Group ID</th> |
|
|
<th>Group Name</th> |
|
|
<th>Group Name</th> |
|
|
<th>Group Participants</th> |
|
|
<th>Group Participants</th> |
|
|
<th>Group Created At</th> |
|
|
<th>Group Created At</th> |
|
|
@ -300,6 +301,7 @@ |
|
|
</thead> |
|
|
</thead> |
|
|
<tbody v-if="data_groups != null"> |
|
|
<tbody v-if="data_groups != null"> |
|
|
<tr v-for="g in data_groups"> |
|
|
<tr v-for="g in data_groups"> |
|
|
|
|
|
<td data-label="GID">[[ g.JID.User ]]</td> |
|
|
<td data-label="Name">[[ g.Name ]]</td> |
|
|
<td data-label="Name">[[ g.Name ]]</td> |
|
|
<td data-label="Age">[[ g.Participants.length ]]</td> |
|
|
<td data-label="Age">[[ g.Participants.length ]]</td> |
|
|
<td data-label="Job">[[ g.GroupCreated ]]</td> |
|
|
<td data-label="Job">[[ g.GroupCreated ]]</td> |
|
|
|