summaryrefslogtreecommitdiffstats
path: root/model/utils.go
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-07-26 08:51:25 +0100
committerGitHub <noreply@github.com>2017-07-26 08:51:25 +0100
commit4132a02319a9cf07cbd13c989de9b891d89f8fb3 (patch)
treec1ef4d4c102176d83ae70664cf557ad70a3704aa /model/utils.go
parent489151d2d2ab821b51637a67c53b41246dfcd9b4 (diff)
downloadchat-4132a02319a9cf07cbd13c989de9b891d89f8fb3.tar.gz
chat-4132a02319a9cf07cbd13c989de9b891d89f8fb3.tar.bz2
chat-4132a02319a9cf07cbd13c989de9b891d89f8fb3.zip
PLT-7183: User/Channel NotifyProps Bulk Import. (#7019)
Diffstat (limited to 'model/utils.go')
-rw-r--r--model/utils.go16
1 files changed, 14 insertions, 2 deletions
diff --git a/model/utils.go b/model/utils.go
index 7f612b572..090644ec6 100644
--- a/model/utils.go
+++ b/model/utils.go
@@ -11,14 +11,14 @@ import (
"fmt"
"io"
"io/ioutil"
+ "net"
"net/mail"
"net/url"
"regexp"
+ "strconv"
"strings"
"time"
- "net"
-
goi18n "github.com/nicksnyder/go-i18n/i18n"
"github.com/pborman/uuid"
)
@@ -480,3 +480,15 @@ func IsValidWebsocketUrl(rawUrl string) bool {
return true
}
+
+func IsValidTrueOrFalseString(value string) bool {
+ return value == "true" || value == "false"
+}
+
+func IsValidNumberString(value string) bool {
+ if _, err := strconv.Atoi(value); err != nil {
+ return false
+ }
+
+ return true
+}