From a4b65f1ab5917b83187f74577fc20887724e0f1d Mon Sep 17 00:00:00 2001 From: neha-Gupta1 Date: Tue, 22 Aug 2023 10:23:13 +0530 Subject: [PATCH] improve function names --- src/internal/m365/collection/groups/handler.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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) }