Barazo AppView backend
barazo.forum
1/** Maximum reply depth stored in community_settings (unlimited). */
2export const MAX_REPLY_DEPTH_DEFAULT = 9999
3
4/** Hard ceiling for the depth query parameter to prevent abuse. */
5export const MAX_DEPTH_QUERY_PARAM = 100
6
7/** Default depth returned when the query parameter is omitted. */
8export const DEFAULT_DEPTH_QUERY_PARAM = 10