You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
716 B
YAML
27 lines
716 B
YAML
8 years ago
|
---
|
||
|
allOf:
|
||
|
- $ref: core-event-schema/state_event.yaml
|
||
|
description: 'This event controls whether guest users are allowed to join rooms. If this event is absent, servers should act as if it is present and has the guest_access value "forbidden".'
|
||
|
properties:
|
||
|
content:
|
||
|
properties:
|
||
|
guest_access:
|
||
|
description: Whether guests can join the room.
|
||
|
enum:
|
||
|
- can_join
|
||
|
- forbidden
|
||
|
type: string
|
||
|
required:
|
||
|
- guest_access
|
||
|
type: object
|
||
|
state_key:
|
||
|
description: A zero-length string.
|
||
|
pattern: '^$'
|
||
|
type: string
|
||
|
type:
|
||
|
enum:
|
||
|
- m.room.guest_access
|
||
|
type: string
|
||
|
title: Controls whether guest users are allowed to join rooms.
|
||
|
type: object
|