Expose method to configure user's

metadata
This commit is contained in:
Daniel García Aubert 2017-08-09 12:51:21 +02:00
parent 01a71ee60e
commit ee9709199a

View File

@ -33,3 +33,7 @@ var pool = new RedisPool(redisConfig);
module.exports.getPool = function getPool() {
return pool;
};
module.exports.configureUserMetadata = function configureUserMetadata(action, params, callback) {
metadataBackend.redisCmd(5, action, params, callback);
}