fix(channels): sync monoforum suggested forwards and reactions
This commit is contained in:
parent
45a7e117ea
commit
fd47dd765a
17 changed files with 650 additions and 23 deletions
|
|
@ -76,6 +76,7 @@ type monoforumSendFingerprintPayload struct {
|
|||
Entities []domain.MessageEntity `json:"entities"`
|
||||
Media *domain.MessageMedia `json:"media"`
|
||||
ReplyTo *domain.MessageReply `json:"reply_to"`
|
||||
Forward *domain.MessageForward `json:"forward,omitempty"`
|
||||
Silent bool `json:"silent"`
|
||||
NoForwards bool `json:"noforwards"`
|
||||
SuggestedPost *domain.SuggestedPost `json:"suggested_post,omitempty"`
|
||||
|
|
@ -168,6 +169,7 @@ func MonoforumSendFingerprint(req domain.SendMonoforumMessageRequest) ([]byte, e
|
|||
Entities: req.Entities,
|
||||
Media: req.Media,
|
||||
ReplyTo: req.ReplyTo,
|
||||
Forward: req.Forward,
|
||||
Silent: req.Silent,
|
||||
NoForwards: req.NoForwards,
|
||||
SuggestedPost: req.SuggestedPost,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue