mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
Fixed API return type in documentation (#28984)
Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com>
This commit is contained in:
parent
c6a7a8f628
commit
2d21f44ede
2 changed files with 19 additions and 2 deletions
|
|
@ -3059,6 +3059,19 @@ components:
|
|||
format: int64
|
||||
has_syncables:
|
||||
type: boolean
|
||||
GroupMember:
|
||||
type: object
|
||||
properties:
|
||||
group_id:
|
||||
type: string
|
||||
user_id:
|
||||
type: string
|
||||
create_at:
|
||||
type: integer
|
||||
format: int64
|
||||
delete_at:
|
||||
type: integer
|
||||
format: int64
|
||||
GroupSyncableTeam:
|
||||
type: object
|
||||
properties:
|
||||
|
|
|
|||
|
|
@ -854,7 +854,9 @@
|
|||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/StatusOK"
|
||||
type: array
|
||||
items:
|
||||
$ref: "#/components/schemas/GroupMember"
|
||||
post:
|
||||
tags:
|
||||
- groups
|
||||
|
|
@ -898,7 +900,9 @@
|
|||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: "#/components/schemas/StatusOK"
|
||||
type: array
|
||||
items:
|
||||
$ref: "#/components/schemas/GroupMember"
|
||||
"/api/v4/groups/{group_id}/stats":
|
||||
get:
|
||||
tags:
|
||||
|
|
|
|||
Loading…
Reference in a new issue