Scope nesting, but NOT resources

How about:

scope "/foo", Bar do
  pipe_through[...]
  get ...
  get ...
  scope "/" do
    pipe_through[...more...]
    post ...
  end
end
3 Likes