Fixes conditionals in can_read

This commit is contained in:
Vitor Pamplona 2024-08-19 15:38:15 -04:00
parent 36cbdead62
commit ba0f83d5ff

2
20.md
View File

@ -15,7 +15,7 @@ Upon connection, and at any point during the connection, the Relay can send a `L
Where `limit_properties` includes properties that are specifically designed to change the way Clients communicate. Options are:
- `can_write: <true|false>`, If false, Clients MUST NOT publish events to the relay.
- `can_read: <true|false>`, If true, Clients MUST NOT send `REQ` commands to the relay.
- `can_read: <true|false>`, If false, Clients MUST NOT send `REQ` commands to the relay.
<br/><br/>
- `accepted_event_kinds: [<unsigned int>, <unsigned int>, ...]`, Clients MUST filter publishing events by these types.
- `blocked_event_kinds: [<unsigned int>, <unsigned int>, ...]`, Clients MUST remove these types from publishing actions.