summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorJesús Espino <jespinog@gmail.com>2018-05-03 15:40:54 +0200
committerHarrison Healey <harrisonmhealey@gmail.com>2018-05-03 09:40:54 -0400
commitffb834ec3ce048db341e2438c0116475297a6f74 (patch)
tree0f6a1baff9bd908c7a797cb577c6ed6b20a0f256 /utils
parent62898f4892b020b9bcf1b310830451f8bc57ba5a (diff)
downloadchat-ffb834ec3ce048db341e2438c0116475297a6f74.tar.gz
chat-ffb834ec3ce048db341e2438c0116475297a6f74.tar.bz2
chat-ffb834ec3ce048db341e2438c0116475297a6f74.zip
Fix TestSendNotifications test (#8712)
Diffstat (limited to 'utils')
-rw-r--r--utils/utils.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/utils/utils.go b/utils/utils.go
index 595a9d2ba..b156f9934 100644
--- a/utils/utils.go
+++ b/utils/utils.go
@@ -13,6 +13,15 @@ import (
"github.com/mattermost/mattermost-server/model"
)
+func StringInSlice(a string, slice []string) bool {
+ for _, b := range slice {
+ if b == a {
+ return true
+ }
+ }
+ return false
+}
+
func StringArrayIntersection(arr1, arr2 []string) []string {
arrMap := map[string]bool{}
result := []string{}