File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -282,6 +282,8 @@ jobs:
282282 steps :
283283 - name : Checkout mattermost project
284284 uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
285+ - name : Apply limitless patch
286+ run : patch -p1 --ignore-whitespace --fuzz=3 < ../limitless.patch
285287 - name : Run setup-go-work
286288 run : make setup-go-work
287289 - name : Build
Original file line number Diff line number Diff line change 1+ diff --git a/Makefile b/Makefile
2+ --- a/Makefile
3+ +++ b/Makefile
4+ @@ -59,7 +59,7 @@ MMCTL_LDFLAGS += -X "$(MMCTL_PKG).buildDate=$(MMCTL_BUILD_DATE)"
5+
6+ # Enterprise
7+ BUILD_ENTERPRISE_DIR ?= ../../enterprise
8+ - BUILD_ENTERPRISE ?= true
9+ + BUILD_ENTERPRISE ?= false
10+ BUILD_ENTERPRISE_READY = false
11+ BUILD_TYPE_NAME = team
12+ BUILD_HASH_ENTERPRISE = none
13+ diff --git a/channels/app/limits.go b/channels/app/limits.go
14+ --- a/channels/app/limits.go
15+ +++ b/channels/app/limits.go
16+ @@ -12,8 +12,8 @@ import (
17+ )
18+
19+ const (
20+ - maxUsersLimit = 200
21+ - maxUsersHardLimit = 250
22+ + maxUsersLimit = 5_000_000
23+ + maxUsersHardLimit = 11_000_000
24+ )
You can’t perform that action at this time.
0 commit comments