Skip to content

Commit a8ec463

Browse files
author
Vadym Vikulin
committed
Limitless v11.3.0-rc2
1 parent b94c037 commit a8ec463

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.github/workflows/server-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff 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

limitless.patch

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
)

0 commit comments

Comments
 (0)