/dports/www/mattermost-server/mattermost-server-6.0.2/store/localcachelayer/ |
H A D | user_layer_test.go | 38 …gotUser, err := cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.UserG… 43 …_, _ = cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.UserGetByIdsOp… 53 …gotUser, err := cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.UserG… 58 …_, _ = cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.UserGetByIdsOp… 68 …gotUser, err := cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.UserG… 74 …_, _ = cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.UserGetByIdsOp… 84 …storedUsers, err := mockStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.Use… 95 …cachedUsers, err := cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.U… 102 …cachedUsers, err = cachedStore.User().GetProfileByIds(context.Background(), fakeUserIds, &store.Us…
|
H A D | user_layer.go | 108 func (s *LocalCacheUserStore) GetProfileByIds(ctx context.Context, userIds []string, options *store… func 110 return s.UserStore.GetProfileByIds(ctx, userIds, options, false) 144 remainingUsers, err := s.UserStore.GetProfileByIds(ctx, remainingUserIds, options, false)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/searchlayer/ |
H A D | user_layer.go | 58 users, nErr := s.UserStore.GetProfileByIds(context.Background(), usersIds, nil, false) 120 users, nErr := s.UserStore.GetProfileByIds(context.Background(), uchanIds, nil, false) 127 users, nErr := s.UserStore.GetProfileByIds(context.Background(), nuchanIds, nil, false)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/app/ |
H A D | slack.go | 109 if users, err := userStore.GetProfileByIds(context.Background(), userIDs, nil, true); err == nil {
|
H A D | channel.go | 525 users, err := a.Srv().Store.User().GetProfileByIds(context.Background(), userIDs, nil, true) 604 users, err := a.Srv().Store.User().GetProfileByIds(context.Background(), userIDs, nil, true)
|
H A D | user.go | 1908 users, err := a.Srv().Store.User().GetProfileByIds(context.Background(), userIDs, nil, false)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/services/users/ |
H A D | users.go | 132 users, err := us.store.GetProfileByIds(context.Background(), userIDs, options, allowFromCache)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/sqlstore/ |
H A D | thread_store.go | 321 …users, err = s.User().GetProfileByIds(context.Background(), userIds, &store.UserGetByIdsOpts{}, tr… 441 …users, err = s.User().GetProfileByIds(context.Background(), thread.Participants, &store.UserGetByI…
|
H A D | user_store.go | 974 func (us SqlUserStore) GetProfileByIds(ctx context.Context, userIds []string, options *store.UserGe… func
|
H A D | post_store.go | 802 …users, err = s.User().GetProfileByIds(context.Background(), userIds, &store.UserGetByIdsOpts{}, tr…
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/ |
H A D | user_store.go | 1543 users, err := ss.User().GetProfileByIds(context.Background(), []string{u1.Id}, nil, false) 1549 users, err := ss.User().GetProfileByIds(context.Background(), []string{u1.Id}, nil, true) 1555 …users, err := ss.User().GetProfileByIds(context.Background(), []string{u1.Id, u2.Id, u3.Id}, nil, … 1561 …users, err := ss.User().GetProfileByIds(context.Background(), []string{u1.Id, u2.Id, u3.Id}, nil, … 1567 users, err := ss.User().GetProfileByIds(context.Background(), []string{"123"}, nil, true) 1573 …users, err := ss.User().GetProfileByIds(context.Background(), []string{u1.Id, u2.Id, u3.Id, u4.Id}…
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/ |
H A D | store.go | 382 …GetProfileByIds(ctx context.Context, userIds []string, options *UserGetByIdsOpts, allowFromCache b… methodSpec
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/mocks/ |
H A D | UserStore.go | 688 func (_m *UserStore) GetProfileByIds(ctx context.Context, userIds []string, options *store.UserGetB… func
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/retrylayer/ |
H A D | retrylayer.go | 10935 func (s *RetryLayerUserStore) GetProfileByIds(ctx context.Context, userIds []string, options *store… func 10939 result, err := s.UserStore.GetProfileByIds(ctx, userIds, options, allowFromCache)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/timerlayer/ |
H A D | timerlayer.go | 9064 func (s *TimerLayerUserStore) GetProfileByIds(ctx context.Context, userIds []string, options *store… func 9067 result, err := s.UserStore.GetProfileByIds(ctx, userIds, options, allowFromCache)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/opentracinglayer/ |
H A D | opentracinglayer.go | 10055 func (s *OpenTracingLayerUserStore) GetProfileByIds(ctx context.Context, userIds []string, options … func 10064 result, err := s.UserStore.GetProfileByIds(ctx, userIds, options, allowFromCache)
|