Module: Ext::Commentable
- Extended by:
- ActiveSupport::Concern
- Defined in:
- app/models/interact/ext/commentable.rb
Instance Method Summary collapse
Instance Method Details
#commentable?(user_id) ⇒ Boolean
11 12 13 |
# File 'app/models/interact/ext/commentable.rb', line 11 def commentable?(user_id) user_id ? !comments.exists?(user_id: user_id) : true end |