Skip to content
This repository has been archived by the owner on Feb 13, 2025. It is now read-only.

fix user filter #2246

Merged
merged 1 commit into from
Apr 26, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/bosun/sched/views.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ func (is IncidentSummaryView) Ask(filter string) (bool, error) {
return glob.Glob(value, is.AlertName), nil
case "user":
for _, action := range is.Actions {
if action.User == value {
if glob.Glob(value, action.User) {
return true, nil
}
}
Expand Down