Barazo AppView backend barazo.forum
at main 8 lines 335 B view raw
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