diff --git a/src/internal/m365/collection/groups/handler.go b/src/internal/m365/collection/groups/handler.go index c1a544e67..d4a382149 100644 --- a/src/internal/m365/collection/groups/handler.go +++ b/src/internal/m365/collection/groups/handler.go @@ -10,9 +10,9 @@ import ( ) type BackupMessagesHandler interface { - GetMessage(ctx context.Context, teamID, channelID, itemID string) (models.ChatMessageable, error) + GetMessageByID(ctx context.Context, teamID, channelID, itemID string) (models.ChatMessageable, error) NewMessagePager(teamID, channelID string) api.MessageItemDeltaEnumerator - GetChannel(ctx context.Context, teamID, channelID string) (models.Channelable, error) + GetChannelByID(ctx context.Context, teamID, channelID string) (models.Channelable, error) NewChannelPager(teamID, channelID string) api.ChannelItemDeltaEnumerator - GetReply(ctx context.Context, teamID, channelID, messageID string) (serialization.Parsable, error) + GetReplyByID(ctx context.Context, teamID, channelID, messageID string) (serialization.Parsable, error) }