github.com/mattermosttest/mattermost-server/v5@v5.0.0-20200917143240-9dfa12e121f9/app/command_logout.go (about) 1 // Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. 2 // See LICENSE.txt for license information. 3 4 package app 5 6 import ( 7 goi18n "github.com/mattermost/go-i18n/i18n" 8 "github.com/mattermost/mattermost-server/v5/model" 9 ) 10 11 type LogoutProvider struct { 12 } 13 14 const ( 15 CMD_LOGOUT = "logout" 16 ) 17 18 func init() { 19 RegisterCommandProvider(&LogoutProvider{}) 20 } 21 22 func (me *LogoutProvider) GetTrigger() string { 23 return CMD_LOGOUT 24 } 25 26 func (me *LogoutProvider) GetCommand(a *App, T goi18n.TranslateFunc) *model.Command { 27 return &model.Command{ 28 Trigger: CMD_LOGOUT, 29 AutoComplete: true, 30 AutoCompleteDesc: T("api.command_logout.desc"), 31 AutoCompleteHint: "", 32 DisplayName: T("api.command_logout.name"), 33 } 34 } 35 36 func (me *LogoutProvider) DoCommand(a *App, args *model.CommandArgs, message string) *model.CommandResponse { 37 // Actual logout is handled client side. 38 return &model.CommandResponse{GotoLocation: "/login"} 39 }