mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-03-03 10:14:10 +01:00
Merge pull request #1590 from turt2live/travis/c2s/403-put-state
Document 403 error for sending state events
This commit is contained in:
commit
7ecf2406eb
|
|
@ -87,6 +87,16 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
A unique identifier for the event.
|
A unique identifier for the event.
|
||||||
|
403:
|
||||||
|
description: |-
|
||||||
|
The sender doesn't have permission to send the event into the room.
|
||||||
|
schema:
|
||||||
|
$ref: "definitions/errors/error.yaml"
|
||||||
|
examples:
|
||||||
|
application/json: {
|
||||||
|
"errcode": "M_FORBIDDEN",
|
||||||
|
"error": "You do not have permission to send the event."
|
||||||
|
}
|
||||||
tags:
|
tags:
|
||||||
- Room participation
|
- Room participation
|
||||||
"/rooms/{roomId}/state/{eventType}":
|
"/rooms/{roomId}/state/{eventType}":
|
||||||
|
|
@ -142,5 +152,15 @@ paths:
|
||||||
type: string
|
type: string
|
||||||
description: |-
|
description: |-
|
||||||
A unique identifier for the event.
|
A unique identifier for the event.
|
||||||
|
403:
|
||||||
|
description: |-
|
||||||
|
The sender doesn't have permission to send the event into the room.
|
||||||
|
schema:
|
||||||
|
$ref: "definitions/errors/error.yaml"
|
||||||
|
examples:
|
||||||
|
application/json: {
|
||||||
|
"errcode": "M_FORBIDDEN",
|
||||||
|
"error": "You do not have permission to send the event."
|
||||||
|
}
|
||||||
tags:
|
tags:
|
||||||
- Room participation
|
- Room participation
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1 @@
|
||||||
|
Document the 403 error for sending state events.
|
||||||
Loading…
Reference in a new issue