You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
997 B
YAML
34 lines
997 B
YAML
4 years ago
|
get:
|
||
|
tags:
|
||
|
- groups
|
||
|
summary: Get user group details
|
||
|
parameters:
|
||
|
- name: slug
|
||
|
in: path
|
||
|
required: true
|
||
|
schema:
|
||
|
type: string
|
||
|
example: administrators
|
||
|
responses:
|
||
|
"200":
|
||
|
description: ""
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
allOf:
|
||
|
- type: object
|
||
|
properties:
|
||
|
title:
|
||
|
type: string
|
||
|
group:
|
||
|
$ref: ../../components/schemas/GroupObject.yaml#/GroupFullObject
|
||
|
posts:
|
||
|
$ref: ../../components/schemas/PostsObject.yaml#/PostsObject
|
||
|
isAdmin:
|
||
|
type: boolean
|
||
|
isGlobalMod:
|
||
|
type: boolean
|
||
|
allowPrivateGroups:
|
||
|
type: number
|
||
|
- $ref: ../../components/schemas/Breadcrumbs.yaml#/Breadcrumbs
|
||
|
- $ref: ../../components/schemas/CommonProps.yaml#/CommonProps
|