/dports/www/writefreely/writefreely-0.13.1/ |
H A D | collections.go | 864 displayPage.PinnedPosts, _ = app.db.GetPinnedPosts(coll.CollectionObj, isOwner) 983 displayPage.PinnedPosts, _ = app.db.GetPinnedPosts(coll.CollectionObj, isOwner)
|
H A D | database.go | 103 GetPinnedPosts(coll *CollectionObj, includeFuture bool) (*[]PublicPost, error) methodSpec 1605 func (db *datastore) GetPinnedPosts(coll *CollectionObj, includeFuture bool) (*[]PublicPost, error)… func
|
H A D | posts.go | 1546 tp.PinnedPosts, _ = app.db.GetPinnedPosts(coll, p.IsOwner)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/api4/ |
H A D | channel_test.go | 2457 posts, _, err := client.GetPinnedPosts(channel.Id, "") 2462 posts, resp, err := client.GetPinnedPosts(channel.Id, "") 2467 posts, resp, _ = client.GetPinnedPosts(channel.Id, resp.Etag) 2470 _, resp, err = client.GetPinnedPosts(GenerateTestId(), "") 2474 _, resp, err = client.GetPinnedPosts("junk", "") 2479 _, resp, err = client.GetPinnedPosts(channel.Id, "") 2483 _, _, err = th.SystemAdminClient.GetPinnedPosts(channel.Id, "")
|
H A D | channel.go | 659 posts, err := c.App.GetPinnedPosts(c.Params.ChannelId)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/ |
H A D | store.go | 214 GetPinnedPosts(channelID string) (*model.PostList, error) methodSpec
|
/dports/www/mattermost-server/mattermost-server-6.0.2/app/ |
H A D | channel.go | 3114 func (a *App) GetPinnedPosts(channelID string) (*model.PostList, *model.AppError) { func 3115 posts, err := a.Srv().Store.Channel().GetPinnedPosts(channelID)
|
H A D | app_iface.go | 673 GetPinnedPosts(channelID string) (*model.PostList, *model.AppError) methodSpec
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/mocks/ |
H A D | ChannelStore.go | 1100 func (_m *ChannelStore) GetPinnedPosts(channelID string) (*model.PostList, error) { func
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/storetest/ |
H A D | channel_store.go | 5920 pl, errGet := ss.Channel().GetPinnedPosts(o1.Id) 5941 pl, errGet = ss.Channel().GetPinnedPosts(o2.Id) 5977 posts, err := ss.Channel().GetPinnedPosts(channelId)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/sqlstore/ |
H A D | channel_store.go | 767 func (s SqlChannelStore) GetPinnedPosts(channelId string) (*model.PostList, error) { func
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/retrylayer/ |
H A D | retrylayer.go | 1543 func (s *RetryLayerChannelStore) GetPinnedPosts(channelID string) (*model.PostList, error) { func 1547 result, err := s.ChannelStore.GetPinnedPosts(channelID)
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/timerlayer/ |
H A D | timerlayer.go | 1320 func (s *TimerLayerChannelStore) GetPinnedPosts(channelID string) (*model.PostList, error) { func 1323 result, err := s.ChannelStore.GetPinnedPosts(channelID)
|
/dports/net-im/matterbridge/matterbridge-1.22.3/vendor/github.com/mattermost/mattermost-server/v5/model/ |
H A D | client4.go | 2463 func (c *Client4) GetPinnedPosts(channelId string, etag string) (*PostList, *Response) { func
|
/dports/net-im/matterircd/matterircd-0.25.0/vendor/github.com/mattermost/mattermost-server/v5/model/ |
H A D | client4.go | 2535 func (c *Client4) GetPinnedPosts(channelId string, etag string) (*PostList, *Response) { func
|
/dports/www/mattermost-server/mattermost-server-6.0.2/store/opentracinglayer/ |
H A D | opentracinglayer.go | 1427 func (s *OpenTracingLayerChannelStore) GetPinnedPosts(channelID string) (*model.PostList, error) { func 1436 result, err := s.ChannelStore.GetPinnedPosts(channelID)
|
/dports/net-im/matterircd/matterircd-0.25.0/vendor/github.com/mattermost/mattermost-server/v6/model/ |
H A D | client4.go | 2984 func (c *Client4) GetPinnedPosts(channelId string, etag string) (*PostList, *Response, error) { func
|
/dports/www/mattermost-server/mattermost-server-6.0.2/model/ |
H A D | client4.go | 2984 func (c *Client4) GetPinnedPosts(channelId string, etag string) (*PostList, *Response, error) { func
|
/dports/www/mattermost-server/mattermost-server-6.0.2/app/opentracing/ |
H A D | opentracing_layer.go | 7191 func (a *OpenTracingAppLayer) GetPinnedPosts(channelID string) (*model.PostList, *model.AppError) { func 7203 resultVar0, resultVar1 := a.app.GetPinnedPosts(channelID)
|