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>
45 lines
1.3 KiB
Go
45 lines
1.3 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package slashcommands
|
|
|
|
import (
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
"github.com/mattermost/mattermost/server/public/shared/i18n"
|
|
"github.com/mattermost/mattermost/server/public/shared/request"
|
|
"github.com/mattermost/mattermost/server/v8/channels/app"
|
|
)
|
|
|
|
type SearchProvider struct {
|
|
}
|
|
|
|
const (
|
|
CmdSearch = "search"
|
|
)
|
|
|
|
func init() {
|
|
app.RegisterCommandProvider(&SearchProvider{})
|
|
}
|
|
|
|
func (search *SearchProvider) GetTrigger() string {
|
|
return CmdSearch
|
|
}
|
|
|
|
func (search *SearchProvider) GetCommand(a *app.App, T i18n.TranslateFunc) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CmdSearch,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: T("api.command_search.desc"),
|
|
AutoCompleteHint: T("api.command_search.hint"),
|
|
DisplayName: T("api.command_search.name"),
|
|
}
|
|
}
|
|
|
|
func (search *SearchProvider) DoCommand(a *app.App, rctx request.CTX, args *model.CommandArgs, message string) *model.CommandResponse {
|
|
// This command is handled client-side and shouldn't hit the server.
|
|
return &model.CommandResponse{
|
|
Text: args.T("api.command_search.unsupported.app_error"),
|
|
ResponseType: model.CommandResponseTypeEphemeral,
|
|
}
|
|
}
|