5
0
mirror of git://git.proxmox.com/git/pve-docs.git synced 2025-03-30 02:50:10 +03:00

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.description) {
if (info.permissions.user === 'world') {
permhtml += "Accessible without any authententification.";
permhtml += "Accessible without any authentication.";
} else if (info.permissions.user === 'all') {
permhtml += "Accessible by all authententicated users.";
permhtml += "Accessible by all authenticated users.";
} else {
permhtml += 'Onyl accessible by user "' +
info.permissions.user + '"';