2020-12-17 14:09:48 -05:00
|
|
|
get:
|
|
|
|
|
tags:
|
|
|
|
|
- admin
|
|
|
|
|
summary: Get user settings
|
|
|
|
|
responses:
|
|
|
|
|
"200":
|
|
|
|
|
description: ""
|
|
|
|
|
content:
|
|
|
|
|
application/json:
|
|
|
|
|
schema:
|
|
|
|
|
allOf:
|
|
|
|
|
- type: object
|
|
|
|
|
properties:
|
2023-05-31 11:54:48 -04:00
|
|
|
title:
|
|
|
|
|
type: string
|
2023-11-07 12:36:40 -05:00
|
|
|
groupsExemptFromNewUserRestrictions:
|
|
|
|
|
type: array
|
|
|
|
|
items:
|
|
|
|
|
$ref: ../../../components/schemas/GroupObject.yaml#/GroupDataObject
|
2020-12-17 14:09:48 -05:00
|
|
|
notificationSettings:
|
|
|
|
|
type: array
|
|
|
|
|
items:
|
|
|
|
|
type: object
|
|
|
|
|
properties:
|
|
|
|
|
name:
|
|
|
|
|
type: string
|
|
|
|
|
description: The notification type
|
|
|
|
|
label:
|
|
|
|
|
type: string
|
|
|
|
|
description: The language key for the notification type (for localisation client-side)
|
|
|
|
|
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps
|