Add flags verification
This commit is contained in:
@ -16,7 +16,7 @@ limitations under the License.
|
||||
*/
|
||||
|
||||
function uupApiVersion() {
|
||||
return '1.43.2';
|
||||
return '1.43.3';
|
||||
}
|
||||
|
||||
require_once dirname(__FILE__).'/auths.php';
|
||||
|
@ -190,3 +190,12 @@ function uupApiConfigIsTrue($config) {
|
||||
|
||||
return $data[$config] == true;
|
||||
}
|
||||
|
||||
function getAllowedFlags() {
|
||||
$flags = ['thisonly'];
|
||||
|
||||
if(uupApiConfigIsTrue('allow_corpnet'))
|
||||
$flags[] = 'corpnet';
|
||||
|
||||
return $flags;
|
||||
}
|
||||
|
Reference in New Issue
Block a user