From 973e008c5359a2488c73a8efe8d31a055cd3ad8a Mon Sep 17 00:00:00 2001 From: Shota Gvinepadze Date: Thu, 29 Jul 2021 18:25:16 +0400 Subject: [PATCH] Fix categorization method version for plugin api (#18023) --- plugin/api.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/api.go b/plugin/api.go index e82eb155d5..4c6474dbdd 100644 --- a/plugin/api.go +++ b/plugin/api.go @@ -463,19 +463,19 @@ type API interface { // CreateChannelSidebarCategory creates a new sidebar category for a set of channels. // // @tag ChannelSidebar - // Minimum server version: 5.37 + // Minimum server version: 5.38 CreateChannelSidebarCategory(userID, teamID string, newCategory *model.SidebarCategoryWithChannels) (*model.SidebarCategoryWithChannels, *model.AppError) // GetChannelSidebarCategories returns sidebar categories. // // @tag ChannelSidebar - // Minimum server version: 5.37 + // Minimum server version: 5.38 GetChannelSidebarCategories(userID, teamID string) (*model.OrderedSidebarCategories, *model.AppError) // UpdateChannelSidebarCategories updates the channel sidebar categories. // // @tag ChannelSidebar - // Minimum server version: 5.37 + // Minimum server version: 5.38 UpdateChannelSidebarCategories(userID, teamID string, categories []*model.SidebarCategoryWithChannels) ([]*model.SidebarCategoryWithChannels, *model.AppError) // SearchUsers returns a list of users based on some search criteria.