summaryrefslogtreecommitdiffstats
path: root/model/channel.go
diff options
context:
space:
mode:
authorRuzette Tanyag <ruzette@users.noreply.github.com>2017-03-01 10:57:04 -0500
committerJoram Wilander <jwawilander@gmail.com>2017-03-01 10:57:04 -0500
commit5df5d1fd02068e73cc184827a1cc297083a6747e (patch)
treee5b589c045f13c79c51e591a9e6b7c871cc06a9a /model/channel.go
parente5065cf7575ee05c040945a4b00b7fd90bf39b83 (diff)
downloadchat-5df5d1fd02068e73cc184827a1cc297083a6747e.tar.gz
chat-5df5d1fd02068e73cc184827a1cc297083a6747e.tar.bz2
chat-5df5d1fd02068e73cc184827a1cc297083a6747e.zip
reduced channel name min length to 2 (#5570)
Diffstat (limited to 'model/channel.go')
-rw-r--r--model/channel.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/model/channel.go b/model/channel.go
index eef84099e..c89680194 100644
--- a/model/channel.go
+++ b/model/channel.go
@@ -15,7 +15,7 @@ const (
CHANNEL_DIRECT = "D"
DEFAULT_CHANNEL = "town-square"
CHANNEL_DISPLAY_NAME_MAX_RUNES = 64
- CHANNEL_NAME_MIN_LENGTH = 3
+ CHANNEL_NAME_MIN_LENGTH = 2
CHANNEL_NAME_MAX_LENGTH = 64
CHANNEL_HEADER_MAX_RUNES = 1024
CHANNEL_PURPOSE_MAX_RUNES = 250