mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
38 lines
916 B
Go
38 lines
916 B
Go
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api
|
|
|
|
import (
|
|
"github.com/mattermost/platform/model"
|
|
)
|
|
|
|
type LogoutProvider struct {
|
|
}
|
|
|
|
const (
|
|
CMD_LOGOUT = "logout"
|
|
)
|
|
|
|
func init() {
|
|
RegisterCommandProvider(&LogoutProvider{})
|
|
}
|
|
|
|
func (me *LogoutProvider) GetTrigger() string {
|
|
return CMD_LOGOUT
|
|
}
|
|
|
|
func (me *LogoutProvider) GetCommand(c *Context) *model.Command {
|
|
return &model.Command{
|
|
Trigger: CMD_LOGOUT,
|
|
AutoComplete: true,
|
|
AutoCompleteDesc: c.T("api.command_logout.desc"),
|
|
AutoCompleteHint: "",
|
|
DisplayName: c.T("api.command_logout.name"),
|
|
}
|
|
}
|
|
|
|
func (me *LogoutProvider) DoCommand(c *Context, channelId string, message string) *model.CommandResponse {
|
|
return &model.CommandResponse{GotoLocation: "/logout", ResponseType: model.COMMAND_RESPONSE_TYPE_EPHEMERAL, Text: c.T("api.command_logout.success_message")}
|
|
}
|