Add flags verification

This commit is contained in:
2023-11-09 20:29:25 +01:00
parent 0477fd5fa6
commit 4694c8dc00
3 changed files with 15 additions and 4 deletions

View File

@ -190,3 +190,12 @@ function uupApiConfigIsTrue($config) {
return $data[$config] == true;
}
function getAllowedFlags() {
$flags = ['thisonly'];
if(uupApiConfigIsTrue('allow_corpnet'))
$flags[] = 'corpnet';
return $flags;
}