aboutsummaryrefslogtreecommitdiff
path: root/lib/hooks/tag-modified.go
blob: 44af947189d5cdf8db2ac437129fd2fac74a614b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package hooks

import (
	"fmt"

	"git.sr.ht/~rjarry/aerc/config"
)

type TagModified struct {
	Account string
	Add     []string
	Remove  []string
}

func (m *TagModified) Cmd() string {
	return config.Hooks.TagModified
}

func (m *TagModified) Env() []string {
	env := []string{
		fmt.Sprintf("AERC_ACCOUNT=%s", m.Account),
		fmt.Sprintf("AERC_TAG_ADDED=%v", m.Add),
		fmt.Sprintf("AERC_TAG_REMOVED=%v", m.Remove),
	}

	return env
}