diff options
| -rw-r--r-- | src/leap/config/provider_spec.py | 30 | 
1 files changed, 30 insertions, 0 deletions
| diff --git a/src/leap/config/provider_spec.py b/src/leap/config/provider_spec.py index 958f7846..cf942c7b 100644 --- a/src/leap/config/provider_spec.py +++ b/src/leap/config/provider_spec.py @@ -70,6 +70,36 @@ leap_provider_spec = {          'languages': {              'type': list,              'default': ['en'] +        }, +        'service': { +            'levels': { +                'type': list +            }, +            'default_service_level': { +                'type': int, +                'default': 1 +            }, +            'allow_free': { +                'type': unicode +            }, +            'allow_paid': { +                'type': unicode +            }, +            'allow_anonymous': { +                'type': unicode +            }, +            'allow_registration': { +                'type': unicode +            }, +            'bandwidth_limit': { +                'type': int +            }, +            'allow_limited_bandwidth': { +                'type': unicode +            }, +            'allow_unlimited_bandwidth': { +                'type': unicode +            }          }      }  } | 
