mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 03:27:52 +00:00
- Increase the external url field validation to 2048 characters fixes: https://github.com/chatwoot/chatwoot/issues/7098
6 lines
154 B
Ruby
6 lines
154 B
Ruby
module Limits
|
|
BULK_ACTIONS_LIMIT = 100
|
|
BULK_EXTERNAL_HTTP_CALLS_LIMIT = 25
|
|
URL_LENGTH_LIMIT = 2048 # https://stackoverflow.com/questions/417142
|
|
end
|