fix typo in api viewer

authententification -> authentication
authententicated -> authenticated

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2018-02-13 11:54:11 +01:00 committed by Dietmar Maurer
parent 35a75dd36c
commit 4a0cf6f845

View File

@ -212,9 +212,9 @@ Ext.onReady(function() {
if (info.permissions.user) { if (info.permissions.user) {
if (!info.permissions.description) { if (!info.permissions.description) {
if (info.permissions.user === 'world') { if (info.permissions.user === 'world') {
permhtml += "Accessible without any authententification."; permhtml += "Accessible without any authentication.";
} else if (info.permissions.user === 'all') { } else if (info.permissions.user === 'all') {
permhtml += "Accessible by all authententicated users."; permhtml += "Accessible by all authenticated users.";
} else { } else {
permhtml += 'Onyl accessible by user "' + permhtml += 'Onyl accessible by user "' +
info.permissions.user + '"'; info.permissions.user + '"';