Flowdock
scoping() public

Scope all queries to the current scope.

Example

  Comment.where(:post_id => 1).scoping do
    Comment.first # SELECT * FROM comments WHERE post_id = 1
  end

Please check unscoped if you want to remove all previous scopes (including the default_scope) during the execution of a block.

Show source
Register or log in to add new notes.