Merge pull request #21 from FrozenOrb/revert-20-develop

Revert "Add User's UUID to the response of UserVerifyPassword"
This commit is contained in:
Jonathan Halterman 2016-06-19 22:07:57 -07:00 committed by GitHub
commit 0d14f6ddc0
1 changed files with 2 additions and 3 deletions

View File

@ -25,9 +25,8 @@ 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
));
}
}
}