mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-02-04 05:13:42 +01:00
Merge pull request #750 from kyrias/notice-language
Make m.notice description use stricter language
This commit is contained in:
commit
3265a9dde3
|
|
@ -58,6 +58,9 @@
|
|||
values (`#378 <https://github.com/matrix-org/matrix-doc/pull/378>`_).
|
||||
- Mark required fields in response objects as such
|
||||
(`#394 <https://github.com/matrix-org/matrix-doc/pull/394>`_).
|
||||
- Make ``m.notice`` description a bit harder in its phrasing to try to
|
||||
dissuade the same issues that occurred with IRC
|
||||
(`#750 <https://github.com/matrix-org/matrix-doc/pull/750>`_).
|
||||
|
||||
r0.2.0
|
||||
======
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
allOf:
|
||||
- $ref: core-event-schema/room_event.yaml
|
||||
description: 'A m.notice message should be considered similar to a plain m.text message except that clients should visually distinguish it in some way. It is intended to be used by automated clients, such as bots, bridges, and other entities, rather than humans. Additionally, such automated agents which watch a room for messages and respond to them ought to ignore m.notice messages. This helps to prevent infinite-loop situations where two automated clients continuously exchange messages, as each responds to the other.'
|
||||
description: 'The ``m.notice`` type is primarily intended for responses from automated clients. An ``m.notice`` message must be treated the same way as a regular ``m.text`` message with two exceptions. Firstly, clients should present ``m.notice`` messages to users in a distinct manner, and secondly, ``m.notice`` messages must never be automatically responded to. This helps to prevent infinite-loop situations where two automated clients continuously exchange messages.'
|
||||
properties:
|
||||
content:
|
||||
properties:
|
||||
|
|
|
|||
Loading…
Reference in a new issue