Module: EditHelper

Defined in:
/var/apps/qpixel/app/helpers/edit_helper.rb

Instance Method Summary collapse

Instance Method Details

#max_edit_comment_lengthInteger

Get the maximum edit comment length for the current community, with a maximum of 255.

Returns:

  • (Integer)


5
6
7
# File '/var/apps/qpixel/app/helpers/edit_helper.rb', line 5

def max_edit_comment_length
  [SiteSetting['MaxEditCommentLength'] || 255, 255].min
end