Comment 0 for bug 1450940

Revision history for this message
Travis Tripp (travis-tripp) wrote : Move LAUNCH_INSTANCE_NG_ENABLED under common feature settings

To support stand settings service lookups, we will create a common features area under local_settings.py with the following structure:

feature_toggles = {
    'launch_instance_ng': {
        'enabled': True,
    },
    'indentity_users_table_ng': {
        'enabled': True,
    }
}

This will enable simple lookup using the angular settings service via a helper function.

This structure will enable much richer future fields to be added to describe the feature, its status, etc. e.g.:

feature_toggles = {
    'launch_instance_ng': {
        'enabled': True,
        'description': 'super cool next gen launch instance',
        'status': 'beta'
    }
}