From 1602f1fa7ce945295c5b060b7f23cd1201e8487b Mon Sep 17 00:00:00 2001 From: Jason Robinson Date: Fri, 30 Apr 2021 19:23:32 +0300 Subject: [PATCH] Add ReqRegisterAppservice struct Appservices use a different structure when calling /register, requiring passing in also a `type`, but not requiring many of the other fields in normal client register. Add a separate struct for appservices building on this module. --- requests.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/requests.go b/requests.go index 31c426d..6f6512f 100644 --- a/requests.go +++ b/requests.go @@ -10,6 +10,12 @@ type ReqRegister struct { Auth interface{} `json:"auth,omitempty"` } +// ReqRegisterAppservice is the JSON request for https://matrix.org/docs/spec/application_service/r0.1.2#server-admin-style-permissions +type ReqRegisterAppservice struct { + Username string `json:"username"` + Type string `json:"type"` +} + // ReqLogin is the JSON request for http://matrix.org/docs/spec/client_server/r0.6.0.html#post-matrix-client-r0-login type ReqLogin struct { Type string `json:"type"`