Fix EntityID mistake

This commit is contained in:
ChronosX88 2019-11-18 07:35:12 +04:00
parent 43c47f6a2b
commit 200638a542

View File

@ -14,11 +14,11 @@
For starting we simply use JSON + Websockets. For starting we simply use JSON + Websockets.
## Entity ID ## Entity ID
* Room alias: `#<roomAlias>:<serverpart>` * Room alias: `#<roomAlias>@<serverpart>`
* Username: `@<username>@<serverpart>` * Username: `@<username>@<serverpart>`
* User ID with MSISDN (Mobile Station International Subscriber Directory Number): `%<msisdn without +>:<serverpart>` * User ID with MSISDN (Mobile Station International Subscriber Directory Number): `%<msisdn without +>@<serverpart>`
* User ID with Email: `^<email username>_at_<email hostname>:<serverpart>` * User ID with Email: `^<email username>_at_<email hostname>@serverpart>`
* Message ID: `&<uuid>:<serverpart (from which server the message was sent)>` * Message ID: `&<uuid>@<serverpart (from which server the message was sent)>`
* Room ID: `!<roomID>@<serverpart>` * Room ID: `!<roomID>@<serverpart>`
* Single server-part: `<serverpart>` * Single server-part: `<serverpart>`
@ -37,7 +37,7 @@ type (string) - type of message (used to determine which extension this message
from (EntityID) - from which entity this message is send from (EntityID) - from which entity this message is send
to (EntityID) - message recipient to (EntityID) - message recipient
ok (boolean) - operation success indicator (used to determine if the error happened while processing request) ok (boolean) - operation success indicator (used to determine if the error happened while processing request)
payload (Map<K,V>) - message payload (used to store extra information in message, list of permissible fields in the payload are depends on "type" field) payload (Map<K,V>) - message payload (used to store extra information in message, list of permissible fields in the payload depends on "type" field)
``` ```
## Errors ## Errors