mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-26 23:51:14 +02:00
fix: increase maximum workspaces per user limit from 100 to 400
This commit is contained in:
parent
9fd5d3571c
commit
19a9a84b45
1 changed files with 1 additions and 1 deletions
|
|
@ -857,7 +857,7 @@ class Config:
|
|||
REGISTRATION_ENABLED = os.getenv("REGISTRATION_ENABLED", "TRUE").upper() == "TRUE"
|
||||
# Max workspaces a user may own. The frontend reads this through the
|
||||
# workspace limits route; do not duplicate this value client-side.
|
||||
MAX_WORKSPACES_PER_USER = int(os.getenv("MAX_WORKSPACES_PER_USER", "100"))
|
||||
MAX_WORKSPACES_PER_USER = int(os.getenv("MAX_WORKSPACES_PER_USER", "400"))
|
||||
|
||||
# Google OAuth
|
||||
GOOGLE_OAUTH_CLIENT_ID = os.getenv("GOOGLE_OAUTH_CLIENT_ID")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue