Lock and Unlock only

This commit is contained in:
iranl
2024-01-28 22:17:38 +01:00
committed by GitHub
parent b733a0e7d6
commit 1ef4b8da8b
4 changed files with 19 additions and 1 deletions

View File

@@ -1308,6 +1308,7 @@ const std::vector<std::pair<String, String>> WebCfgServer::getAccessLevelOptions
std::vector<std::pair<String, String>> options;
options.push_back(std::make_pair(std::to_string((int)AccessLevel::Full).c_str(), "Full"));
options.push_back(std::make_pair(std::to_string((int)AccessLevel::LockAndUnlock).c_str(), "Lock and unlock operation only"));
options.push_back(std::make_pair(std::to_string((int)AccessLevel::LockOnly).c_str(), "Lock operation only"));
options.push_back(std::make_pair(std::to_string((int)AccessLevel::ReadOnly).c_str(), "Read only"));