Class: Like

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
lib/generators/templates/model.rb

Class Method Summary collapse

Class Method Details

.likes_on(likeable) ⇒ Object



7
8
9
# File 'lib/generators/templates/model.rb', line 7

def likes_on(likeable)
    where(["likeable_id = ? AND likeable_type = ?", likeable.id, likeable.class.name])
end