mirror of
https://github.com/hoernschen/dendrite.git
synced 2025-07-29 12:42:46 +00:00
Revert "Handle cases when AS is not masquerading"
This reverts commit 911deb88f4
.
This commit is contained in:
parent
1401a102fc
commit
cc9cae60cb
6 changed files with 91 additions and 33 deletions
|
@ -15,10 +15,16 @@
|
|||
|
||||
package gomatrixserverlib
|
||||
|
||||
// ApplicationServiceUnsigned is the contents of the unsigned field of an
|
||||
// ApplicationServiceEvent
|
||||
type ApplicationServiceUnsigned struct {
|
||||
Age int64 `json:"age,omitempty"`
|
||||
}
|
||||
|
||||
// ApplicationServiceEvent is an event format that is sent off to an
|
||||
// application service as part of a transaction.
|
||||
type ApplicationServiceEvent struct {
|
||||
Age int64 `json:"age,omitempty"`
|
||||
Unsigned RawJSON `json:"unsigned,omitempty"`
|
||||
Content RawJSON `json:"content,omitempty"`
|
||||
EventID string `json:"event_id,omitempty"`
|
||||
OriginServerTimestamp int64 `json:"origin_server_ts,omitempty"`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue