Add limit login category support

This commit is contained in:
Jonas Lochmann
2020-06-29 02:00:00 +02:00
parent 7e7caae583
commit 5574ad415c
25 changed files with 666 additions and 51 deletions
@@ -119,6 +119,9 @@
},
{
"$ref": "#/definitions/SerializedUpdateUserFlagsAction"
},
{
"$ref": "#/definitions/SerializedUpdateUserLimitLoginCategory"
}
],
"definitions": {
@@ -1242,6 +1245,29 @@
"values"
],
"title": "SerializedUpdateUserFlagsAction"
},
"SerializedUpdateUserLimitLoginCategory": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"UPDATE_USER_LIMIT_LOGIN_CATEGORY"
]
},
"userId": {
"type": "string"
},
"categoryId": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"type",
"userId"
],
"title": "SerializedUpdateUserLimitLoginCategory"
}
},
"$schema": "http://json-schema.org/draft-07/schema#",