-
Maximum Etherpad limit users per pad
Quotas.js restricts this and by default reads:
function getMaxSimultaneousPadEditors(globalPadId) {if (isProDomainRequest()) {if (pne_utils.isPNE()) {return licensing.getMaxUsersPerPad();} else {return 1e6;}} else {// etherpad.com public padsif (globalPadId && stringutils.startsWith(globalPadId, “conf-”)) {return 64;} else {return 32;}}return 1e6;}function getMaxSavedRevisionsPerPad() {if (isProDomainRequest()) {return 1e3;} else {// free public etherpad.comreturn 100;}}So to summarize:Depending on the mode you are in depends on the amount you haveNon-Pro –>Max per time on 1 pad: 64Max revisions: 100Pro –>Max per time: UnlimitedMax revisions: UnlimitedNo related posts.