Module | ActiveRecord::Acts::MuckComment::InstanceMethods |
In: |
lib/active_record/acts/muck_comment.rb
|
All the methods available to a record that has had acts_as_muck_comment specified.
override this method to change the way permissions are handled on comments
# File lib/active_record/acts/muck_comment.rb, line 71 71: def can_edit?(user) 72: return true if check_user(user) 73: false 74: end