Module: EditHelper
- Defined in:
- app/helpers/edit_helper.rb
Instance Method Summary collapse
-
#max_edit_comment_length ⇒ Integer
Get the maximum edit comment length for the current community, with a maximum of 255.
Instance Method Details
#max_edit_comment_length ⇒ Integer
Get the maximum edit comment length for the current community, with a maximum of 255.
5 6 7 |
# File 'app/helpers/edit_helper.rb', line 5 def max_edit_comment_length [SiteSetting['MaxEditCommentLength'] || 255, 255].min end |