Home
last modified time | relevance | path

Searched refs:UpdateSidebarCategoryOrder (Results 1 – 12 of 12) sorted by relevance

/dports/www/mattermost-server/mattermost-server-6.0.2/app/
H A Dchannel_category.go95 func (a *App) UpdateSidebarCategoryOrder(userID, teamID string, categoryOrder []string) *model.AppE… func
96 err := a.Srv().Store.Channel().UpdateSidebarCategoryOrder(userID, teamID, categoryOrder)
H A Dchannel_category_test.go56 …err := th.App.UpdateSidebarCategoryOrder(user.Id, th.BasicTeam.Id, []string{th.BasicChannel.Id, ba…
63 err = th.App.UpdateSidebarCategoryOrder(user.Id, th.BasicTeam.Id, actualOrder)
71 err = th.App.UpdateSidebarCategoryOrder(user.Id, th.BasicTeam.Id, newOrder)
H A Dapp_iface.go1073 UpdateSidebarCategoryOrder(userID, teamID string, categoryOrder []string) *model.AppError methodSpec
/dports/www/mattermost-server/mattermost-server-6.0.2/api4/
H A Dchannel_category.go127 err := c.App.UpdateSidebarCategoryOrder(c.Params.UserId, c.Params.TeamId, categoryOrder)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/sqlstore/
H A Dchannel_store_categories.go561 func (s SqlChannelStore) UpdateSidebarCategoryOrder(userId, teamId string, categoryOrder []string) … func
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/
H A Dchannel_store_categories.go421 err = ss.Channel().UpdateSidebarCategoryOrder(userId, teamId, []string{
942 …err = ss.Channel().UpdateSidebarCategoryOrder(userId, teamId, []string{dmsCategory.Id, favoritesCa…
/dports/www/mattermost-server/mattermost-server-6.0.2/store/
H A Dstore.go249 UpdateSidebarCategoryOrder(userID, teamID string, categoryOrder []string) error methodSpec
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/mocks/
H A DChannelStore.go1980 func (_m *ChannelStore) UpdateSidebarCategoryOrder(userID string, teamID string, categoryOrder []st… func
/dports/www/mattermost-server/mattermost-server-6.0.2/store/retrylayer/
H A Dretrylayer.go2411 func (s *RetryLayerChannelStore) UpdateSidebarCategoryOrder(userID string, teamID string, categoryO… func
2415 err := s.ChannelStore.UpdateSidebarCategoryOrder(userID, teamID, categoryOrder)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/timerlayer/
H A Dtimerlayer.go2097 func (s *TimerLayerChannelStore) UpdateSidebarCategoryOrder(userID string, teamID string, categoryO… func
2100 err := s.ChannelStore.UpdateSidebarCategoryOrder(userID, teamID, categoryOrder)
/dports/www/mattermost-server/mattermost-server-6.0.2/store/opentracinglayer/
H A Dopentracinglayer.go2269 func (s *OpenTracingLayerChannelStore) UpdateSidebarCategoryOrder(userID string, teamID string, cat… func
2278 err := s.ChannelStore.UpdateSidebarCategoryOrder(userID, teamID, categoryOrder)
/dports/www/mattermost-server/mattermost-server-6.0.2/app/opentracing/
H A Dopentracing_layer.go16550 func (a *OpenTracingAppLayer) UpdateSidebarCategoryOrder(userID string, teamID string, categoryOrde… func
16562 resultVar0 := a.app.UpdateSidebarCategoryOrder(userID, teamID, categoryOrder)