Skip to content

Commit c3c6a06

Browse files
group: include request time in GetGroupRequestParticipants response (#733)
1 parent f5ccc78 commit c3c6a06

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

group.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func (cli *Client) UpdateGroupParticipants(jid types.JID, participantChanges []t
176176
}
177177

178178
// GetGroupRequestParticipants gets the list of participants that have requested to join the group.
179-
func (cli *Client) GetGroupRequestParticipants(jid types.JID) ([]types.JID, error) {
179+
func (cli *Client) GetGroupRequestParticipants(jid types.JID) ([]types.GroupParticipantRequest, error) {
180180
resp, err := cli.sendGroupIQ(context.TODO(), iqGet, jid, waBinary.Node{
181181
Tag: "membership_approval_requests",
182182
})
@@ -188,9 +188,12 @@ func (cli *Client) GetGroupRequestParticipants(jid types.JID) ([]types.JID, erro
188188
return nil, &ElementMissingError{Tag: "membership_approval_requests", In: "response to group request participants query"}
189189
}
190190
requestParticipants := request.GetChildrenByTag("membership_approval_request")
191-
participants := make([]types.JID, len(requestParticipants))
191+
participants := make([]types.GroupParticipantRequest, len(requestParticipants))
192192
for i, req := range requestParticipants {
193-
participants[i] = req.AttrGetter().JID("jid")
193+
participants[i] = types.GroupParticipantRequest{
194+
JID: req.AttrGetter().JID("jid"),
195+
RequestedAt: req.AttrGetter().UnixTime("request_time"),
196+
}
194197
}
195198
return participants, nil
196199
}

types/group.go

+5
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,8 @@ type GroupLinkChange struct {
148148
UnlinkReason GroupUnlinkReason
149149
Group GroupLinkTarget
150150
}
151+
152+
type GroupParticipantRequest struct {
153+
JID JID
154+
RequestedAt time.Time
155+
}

0 commit comments

Comments
 (0)