30 lines
No EOL
828 B
ReStructuredText
30 lines
No EOL
828 B
ReStructuredText
.. _-pathEndOrSingleSlash-:
|
|
|
|
pathEndOrSingleSlash
|
|
====================
|
|
|
|
Only passes the request to its inner route if the unmatched path of the ``RequestContext`` is either empty
|
|
or contains only one single slash.
|
|
|
|
|
|
Signature
|
|
---------
|
|
|
|
.. includecode2:: /../../akka-http/src/main/scala/akka/http/server/directives/PathDirectives.scala
|
|
:snippet: pathEndOrSingleSlash
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
This directive is a simple alias for ``rawPathPrefix(Slash.? ~ PathEnd)`` and is mostly used on an inner-level to
|
|
discriminate "path already fully matched" from other alternatives (see the example below).
|
|
|
|
It is equivalent to ``pathEnd | pathSingleSlash`` but slightly more efficient.
|
|
|
|
|
|
Example
|
|
-------
|
|
|
|
.. includecode2:: ../../../code/docs/http/server/directives/PathDirectivesExamplesSpec.scala
|
|
:snippet: pathEndOrSingleSlash- |