Full Mattermost server source with integrated Community Enterprise features. Includes vendor directory for offline/air-gapped builds. Structure: - enterprise-impl/: Enterprise feature implementations - enterprise-community/: Init files that register implementations - enterprise/: Bridge imports (community_imports.go) - vendor/: All dependencies for offline builds Build (online): go build ./cmd/mattermost Build (offline/air-gapped): go build -mod=vendor ./cmd/mattermost 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
28 lines
1.5 KiB
Go
28 lines
1.5 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package model
|
|
|
|
const ChannelSearchDefaultLimit = 50
|
|
|
|
type ChannelSearch struct {
|
|
Term string `json:"term"`
|
|
ExcludeDefaultChannels bool `json:"exclude_default_channels"`
|
|
NotAssociatedToGroup string `json:"not_associated_to_group"`
|
|
TeamIds []string `json:"team_ids"`
|
|
GroupConstrained bool `json:"group_constrained"`
|
|
ExcludeGroupConstrained bool `json:"exclude_group_constrained"`
|
|
ExcludePolicyConstrained bool `json:"exclude_policy_constrained"`
|
|
Public bool `json:"public"`
|
|
Private bool `json:"private"`
|
|
IncludeDeleted bool `json:"include_deleted"`
|
|
IncludeSearchById bool `json:"include_search_by_id"`
|
|
ExcludeRemote bool `json:"exclude_remote"`
|
|
Deleted bool `json:"deleted"`
|
|
Page *int `json:"page,omitempty"`
|
|
PerPage *int `json:"per_page,omitempty"`
|
|
AccessControlPolicyEnforced bool `json:"access_control_policy_enforced"`
|
|
ExcludeAccessControlPolicyEnforced bool `json:"exclude_access_control_policy_enforced"`
|
|
ParentAccessControlPolicyId string `json:"parent_access_control_policy_id"`
|
|
}
|