instance method
with_scope_level
Ruby on Rails 8.0.4
Since v3.0.20 PrivateSignature
with_scope_level(kind)
No documentation comment.
Parameters
-
kindreq
Source
# File actionpack/lib/action_dispatch/routing/mapper.rb, line 1835
def with_scope_level(kind) # :doc:
@scope = @scope.new_level(kind)
yield
ensure
@scope = @scope.parent
end
Defined in actionpack/lib/action_dispatch/routing/mapper.rb line 1835
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Routing::Mapper::Resources