AddEvents adds one event to the current notification config
(events ...EventType)
| 152 | |
| 153 | // AddEvents adds one event to the current notification config |
| 154 | func (t *Config) AddEvents(events ...EventType) { |
| 155 | t.Events = append(t.Events, events...) |
| 156 | } |
| 157 | |
| 158 | // AddFilterSuffix sets the suffix configuration to the current notification config |
| 159 | func (t *Config) AddFilterSuffix(suffix string) { |
no outgoing calls
no test coverage detected