Home
last modified time | relevance | path

Searched refs:TeamChannelSource (Results 1 – 13 of 13) sorted by relevance

/dports/security/keybase/client-v5.7.1/go/chat/
H A Dteamchannelsource.go132 type TeamChannelSource struct { struct
140 var _ types.TeamChannelSource = (*TeamChannelSource)(nil)
142 func NewTeamChannelSource(g *globals.Context) *TeamChannelSource {
143 return &TeamChannelSource{
151 func (c *TeamChannelSource) OnLogout(mctx libkb.MetaContext) error { argument
158 func (c *TeamChannelSource) OnDbNuke(mctx libkb.MetaContext) error { argument
165 func (c *TeamChannelSource) getTLFConversations(ctx context.Context, uid gregor1.UID, argument
179 func (c *TeamChannelSource) GetLastActiveForTLF(ctx context.Context, uid gregor1.UID, argument
228 func (c *TeamChannelSource) GetChannelsFull(ctx context.Context, uid gregor1.UID, argument
252 func (c *TeamChannelSource) GetChannelsTopicName(ctx context.Context, uid gregor1.UID, argument
[all …]
H A Dteamchannelsource_test.go57 convs, err := g.TeamChannelSource.GetChannelsFull(ctx, uid, tlfID, chat1.TopicType_CHAT)
68 mentions, err := g.TeamChannelSource.GetChannelsTopicName(ctx, uid, tlfID, chat1.TopicType_CHAT)
79 topicName, err := g.TeamChannelSource.GetChannelTopicName(ctx, uid, tlfID,
H A Dhelper.go251 topicName, err = h.G().TeamChannelSource.GetChannelTopicName(ctx, uid, tlfID, topicType, convID)
613 tlfConvs, err := g.TeamChannelSource.GetChannelsFull(ctx, uid, nameInfo.ID, topicType)
852 convs, err := g.TeamChannelSource.GetChannelsFull(ctx, uid, nameInfo.ID, topicType)
H A Dserver.go267 convs, err := h.G().TeamChannelSource.GetChannelsFull(ctx, uid, arg.TlfID, chat1.TopicType_CHAT)
1792 convs, err = h.G().TeamChannelSource.GetChannelsFull(ctx, uid, nameInfo.ID, arg.TopicType)
3626 mtime, err := h.G().TeamChannelSource.GetLastActiveForTLF(ctx, uid, tlfID, chat1.TopicType_CHAT)
3640 activity, err := h.G().TeamChannelSource.GetLastActiveForTeams(ctx, uid, chat1.TopicType_CHAT)
3662 return h.G().TeamChannelSource.GetRecentJoins(ctx, convID, h.remoteClient())
3702 return h.G().TeamChannelSource.GetLastActiveAt(ctx, arg.TeamID, uid, h.remoteClient())
3727 lastActive, err := h.G().TeamChannelSource.GetLastActiveAt(subctx, teamID, uid, h.remoteClient())
H A Dsender.go480 …convs, err := s.G().TeamChannelSource.GetChannelsFull(ctx, msg.ClientHeader.Sender, tlfID, topicTy…
H A Dsender_test.go301 g.TeamChannelSource = NewTeamChannelSource(g)
H A Dboxer.go1337 tcs := b.G().TeamChannelSource
H A Dserver_test.go457 g.TeamChannelSource = NewTeamChannelSource(g)
8363 err = tc.h.G().TeamChannelSource.OnDbNuke(tc.m)
/dports/security/keybase/client-v5.7.1/go/chat/globals/
H A Dglobals.go28 TeamChannelSource types.TeamChannelSource // source of all channels in a team member
66 TeamChannelSource: %v,
101 c.TeamChannelSource != nil,
/dports/security/keybase/client-v5.7.1/go/service/
H A Dmain.go511 g.TeamChannelSource = chat.NewTeamChannelSource(g)
512 g.AddLogoutHook(g.TeamChannelSource, "TeamChannelSource")
513 g.AddDbNukeHook(g.TeamChannelSource, "TeamChannelSource")
/dports/security/keybase/client-v5.7.1/go/chat/utils/
H A Dutils_test.go63 var _ types.TeamChannelSource = (*testTeamChannelSource)(nil)
/dports/security/keybase/client-v5.7.1/go/chat/types/
H A Dinterfaces.go301 type TeamChannelSource interface { interface
/dports/security/keybase/client-v5.7.1/go/kbtest/
H A Dchat.go645 var _ types.TeamChannelSource = (*dummyChannelSource)(nil)