Fixed: backward comptiblity

This commit is contained in:
Konrad 2017-03-26 19:12:04 +02:00
parent bef75408da
commit c33107c1cc
2 changed files with 8 additions and 13 deletions

View file

@ -102,9 +102,10 @@ IdentityHandler::IdentityHandler(StateTokenServer *sts, RsNotify *notify, RsIden
mNotify->registerNotifyClient(this);
addResourceHandler("*", this, &IdentityHandler::handleWildcard);
//addResourceHandler("own", this, &IdentityHandler::handleOwn);
addResourceHandler("own", this, &IdentityHandler::handleOwnIdsRequest);
addResourceHandler("notown", this, &IdentityHandler::handleNotOwnIdsRequest);
addResourceHandler("own", this, &IdentityHandler::handleOwn);
addResourceHandler("own_ids", this, &IdentityHandler::handleOwnIdsRequest);
addResourceHandler("notown_ids", this, &IdentityHandler::handleNotOwnIdsRequest);
addResourceHandler("create_identity", this, &IdentityHandler::handleCreateIdentity);
}