mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-03-29 11:00:32 +00:00
(update files after merge)
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -12,10 +12,13 @@
|
||||
"additionalProperties": true
|
||||
},
|
||||
"session_counts": {
|
||||
"description": "How many sessions the user has. Not populated if it's not a user logging in.",
|
||||
"allOf": [
|
||||
"description": "How many sessions the user has.\n Not populated if it's not a user logging in.",
|
||||
"anyOf": [
|
||||
{
|
||||
"$ref": "#/definitions/SessionCounts"
|
||||
},
|
||||
{
|
||||
"type": "null"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -43,34 +46,34 @@
|
||||
"SessionCounts": {
|
||||
"description": "Information about how many sessions the user has",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"compat",
|
||||
"oauth2",
|
||||
"personal",
|
||||
"total"
|
||||
],
|
||||
"properties": {
|
||||
"total": {
|
||||
"type": "integer",
|
||||
"format": "uint64",
|
||||
"minimum": 0.0
|
||||
"minimum": 0
|
||||
},
|
||||
"oauth2": {
|
||||
"type": "integer",
|
||||
"format": "uint64",
|
||||
"minimum": 0.0
|
||||
"minimum": 0
|
||||
},
|
||||
"compat": {
|
||||
"type": "integer",
|
||||
"format": "uint64",
|
||||
"minimum": 0.0
|
||||
"minimum": 0
|
||||
},
|
||||
"personal": {
|
||||
"type": "integer",
|
||||
"format": "uint64",
|
||||
"minimum": 0.0
|
||||
"minimum": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"total",
|
||||
"oauth2",
|
||||
"compat",
|
||||
"personal"
|
||||
]
|
||||
},
|
||||
"GrantType": {
|
||||
"type": "string",
|
||||
|
||||
Reference in New Issue
Block a user