diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-01-09 14:24:33 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-01-09 14:27:53 -0300 |
commit | 785380dfa7b3f6205b52be2a90afa9b0afa04c5e (patch) | |
tree | b110ec0606c7e63ea5f6963f25691c5c79ccb803 /src/leap/bitmask/config/flags.py | |
parent | c9644f1bdbd26e3c54d8849433d8cfb9fc05a3e7 (diff) |
Add flag to disable version check.
Diffstat (limited to 'src/leap/bitmask/config/flags.py')
-rw-r--r-- | src/leap/bitmask/config/flags.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/leap/bitmask/config/flags.py b/src/leap/bitmask/config/flags.py index ba1b65b9..b1576c32 100644 --- a/src/leap/bitmask/config/flags.py +++ b/src/leap/bitmask/config/flags.py @@ -32,3 +32,12 @@ WARNING: You should NOT use this kind of flags unless you're sure of what STANDALONE = False MAIL_LOGFILE = None + +# The APP/API version check flags are used to provide a way to skip +# that checks. +# This can be used for: +# - allow the use of a client that is not compatible with a provider. +# - use a development version of the client with an older version number +# since it's not released yet, and it is compatible with a newer provider. +APP_VERSION_CHECK = True +API_VERSION_CHECK = True |