Class: ActsAsTaggableOn::Taggable::TaggedWithQuery::AllTagsQuery
- Inherits:
-
QueryBase
- Object
- QueryBase
- ActsAsTaggableOn::Taggable::TaggedWithQuery::AllTagsQuery
- Defined in:
- lib/acts-as-taggable-on/taggable/tagged_with_query/all_tags_query.rb
Instance Method Summary collapse
Methods inherited from QueryBase
Constructor Details
This class inherits a constructor from ActsAsTaggableOn::Taggable::TaggedWithQuery::QueryBase
Instance Method Details
#build ⇒ Object
7 8 9 10 11 12 13 |
# File 'lib/acts-as-taggable-on/taggable/tagged_with_query/all_tags_query.rb', line 7 def build taggable_model.joins(each_tag_in_list) .group(by_taggable) .having() .order(order_conditions) .readonly(false) end |