Open
Description
class API < Grape::API
prefix 'api'
format :json
mount Acme::Ping => 'foo'
mount Acme::Raise
mount Acme::Protected
mount Acme::Post
end
This generates a url like /foo/api
. I'd expect the prefix to take precedence over the mount point and give me /api/foo
. If this is intentional, please disregard.