Adds description of some channel searching options. (#22009)

Co-authored-by: Mattermost Build <build@mattermost.com>
Этот коммит содержится в:
Martin Kraft
2023-01-12 13:47:35 -05:00
коммит произвёл GitHub
родитель daa83d4a78
Коммит c314941317

Просмотреть файл

@@ -160,7 +160,7 @@ type ChannelModeratedRolesPatch struct {
type ChannelSearchOpts struct { type ChannelSearchOpts struct {
NotAssociatedToGroup string NotAssociatedToGroup string
ExcludeDefaultChannels bool ExcludeDefaultChannels bool
IncludeDeleted bool IncludeDeleted bool // If true, deleted channels will be included in the results.
Deleted bool Deleted bool
ExcludeChannelNames []string ExcludeChannelNames []string
TeamIds []string TeamIds []string
@@ -174,7 +174,7 @@ type ChannelSearchOpts struct {
Private bool Private bool
Page *int Page *int
PerPage *int PerPage *int
LastDeleteAt int LastDeleteAt int // When combined with IncludeDeleted, only channels deleted after this time will be returned.
LastUpdateAt int LastUpdateAt int
} }