summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mattermost/mattermost-server/v6/model/plugin_on_install_event.go
blob: 186fd5bd80ae9886fceede3f0d757da21755e2c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.

package model

// OnInstallEvent is sent to the plugin when it gets installed.
type OnInstallEvent struct {
	UserId string // The user who installed the plugin
}