Revert "Add User's UUID to the response of UserVerifyPassword"

This commit is contained in:
Jonathan Halterman 2016-06-19 22:07:49 -07:00 committed by GitHub
parent 33082435f1
commit 920c7f84c6
1 changed files with 2 additions and 3 deletions

View File

@ -25,8 +25,7 @@ public final class GETUserVerifyPassword implements Handler<RoutingContext> {
boolean authorized = user.checkPassword(ctx.request().getParam("password"));
APIv3.respondJson(ctx, ImmutableMap.of(
"authorized", authorized,
"uuid", user.getId()
"authorized", authorized
));
}