bump server after paying for an account

This commit is contained in:
ansuz
2017-05-23 16:11:07 +02:00
parent 6faca87e73
commit e6c04ccb49
3 changed files with 11 additions and 6 deletions

View File

@@ -42,6 +42,11 @@ define([
sig: sig
};
}
} else if (data.cmd === 'UPDATE_LIMIT') {
return Cryptpad.updatePinLimit(function (e, limit, plan, note) {
ret.res = [limit, plan, note];
srcWindow.postMessage(JSON.stringify(ret), domain);
});
} else {
ret.error = "UNKNOWN_CMD";
}