Skip to content
Snippets Groups Projects
Commit 79e3057f authored by Jono Wenger's avatar Jono Wenger
Browse files

Merge remote-tracking branch 'origin/project/HavenBeta' into XX-4712/dmCallbacks

parents 61b0a3f2 346be4d6
No related branches found
No related tags found
1 merge request!135XX-4712 / Add wrapper for bindings.DmCallbacks
This commit is part of merge request !135. Comments created here will be created in the context of that merge request.
......@@ -60,12 +60,13 @@ func newDMClientJS(api *bindings.DMClient) map[string]any {
"GetShareURL": js.FuncOf(cm.GetShareURL),
// DM Sending Methods and Reports
"SendText": js.FuncOf(cm.SendText),
"SendReply": js.FuncOf(cm.SendReply),
"SendReaction": js.FuncOf(cm.SendReaction),
"SendInvite": js.FuncOf(cm.SendInvite),
"SendSilent": js.FuncOf(cm.SendSilent),
"Send": js.FuncOf(cm.Send),
"SendText": js.FuncOf(cm.SendText),
"SendReply": js.FuncOf(cm.SendReply),
"SendReaction": js.FuncOf(cm.SendReaction),
"SendSilent": js.FuncOf(cm.SendSilent),
"SendInvite": js.FuncOf(cm.SendInvite),
"DeleteMessage": js.FuncOf(cm.DeleteMessage),
"Send": js.FuncOf(cm.Send),
// Notifications
"GetNotificationLevel": js.FuncOf(cm.GetNotificationLevel),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment