Compare commits

..

No commits in common. "0c557fe49ceed0b939cdf58ee922eda05c9fe974" and "b80c6238b1a9ba862b7c94e09f33210fcbbaabb7" have entirely different histories.

2 changed files with 26 additions and 25 deletions

View file

@ -1483,7 +1483,7 @@ potential new key backup algorithm version that would fix this issue.
{{% added-in v="1.19" %}} {{% added-in v="1.19" %}}
This enables clients to track a user's preference about enabling or This module enables clients to track a user's preference about enabling or
disabling [server-side backups of room keys](#server-side-key-backups). The data disabling [server-side backups of room keys](#server-side-key-backups). The data
is stored in the [`m.key_backup`](#mkey_backup) global is stored in the [`m.key_backup`](#mkey_backup) global
[account data](#client-config). [account data](#client-config).

View file

@ -1,24 +1,25 @@
--- {
$schema: https://json-schema.org/draft/2020-12/schema "$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
allOf: "title": "Key Backup Event",
- $ref: core-event-schema/event.yaml "description": "Allows clients to track user preferences about key backup.",
description: |- "allOf": [{
Allows clients to track user preferences about key backup. "$ref": "core-event-schema/event.yaml"
properties: }],
content: "properties": {
type: object "type": {
properties: "type": "string",
enabled: "enum": ["m.key_backup"]
type: boolean },
description: |- "content": {
True if the user chose to enable key backup. False if the user chose "type": "object",
to disable key backup. "properties": {
required: "enabled": {
- enabled "description": "True if the user chose to enable key backup. False if the user chose to disable key backup.",
type: "type": "boolean",
type: string }
enum: },
- m.key_backup "required": ["enabled"]
title: Key Backup Event }
type: object },
}