mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-16 04:23:12 +01:00
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
get:
|
|
tags:
|
|
- admin
|
|
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:
|
|
group:
|
|
$ref: ../../../../components/schemas/GroupObject.yaml#/GroupFullObject
|
|
groupNames:
|
|
type: array
|
|
items:
|
|
type: object
|
|
properties:
|
|
encodedName:
|
|
type: string
|
|
displayName:
|
|
type: string
|
|
slug:
|
|
type: string
|
|
selected:
|
|
type: boolean
|
|
allowPrivateGroups:
|
|
type: number
|
|
maximumGroupNameLength:
|
|
type: number
|
|
maximumGroupTitleLength:
|
|
type: number
|
|
- $ref: ../../../../components/schemas/CommonProps.yaml#/CommonProps |