Module: Plotline::Concerns::Taggable::ClassMethods

Defined in:
app/models/plotline/concerns/taggable.rb

Instance Method Summary collapse

Instance Method Details

#tagged_with(tag) ⇒ Object



12
13
14
# File 'app/models/plotline/concerns/taggable.rb', line 12

def tagged_with(tag)
  where('tags @> ?', "{#{tag}}")
end