the description for this gist
lazy val userRoutes: Route = | |
path("users") { | |
authorize { token => | |
val resultF = (userRegistryActor ? GetUsers).mapTo[Users] | |
onSuccess(resultF)(u => complete(u)) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment