|
1 |
| -# Generated by Django 4.2.17 on 2025-06-06 16:22 |
| 1 | +# Generated by Django 4.2.21 on 2025-06-17 20:08 |
2 | 2 |
|
3 | 3 | import ansible_base.feature_flags.models.aap_flag
|
4 | 4 | from django.conf import settings
|
@@ -26,8 +26,8 @@ class Migration(migrations.Migration):
|
26 | 26 | ('condition', models.CharField(default='boolean', help_text='Used to specify a condition, which if met, will enable the feature flag.', max_length=64)),
|
27 | 27 | ('value', models.CharField(default='False', help_text='The value used to evaluate the conditional specified.', max_length=127)),
|
28 | 28 | ('required', models.BooleanField(default=False, help_text="If multiple conditions are required to be met to enable a feature flag, 'required' can be used to specify the necessary conditionals.")),
|
29 |
| - ('support_level', models.CharField(choices=[('NOT_FOR_USE', 'Not for use'), ('NOT_FOR_PRODUCTION', 'Not for production'), ('READY_FOR_PRODUCTION', 'Ready for production')], help_text='The support criteria for the feature flag. Must be one of (NOT_FOR_USE, NOT_FOR_PRODUCTION, READY_FOR_PRODUCTION).', max_length=25)), |
30 |
| - ('visibility', models.CharField(choices=[('public', 'public'), ('private', 'private')], help_text='The visibility level of the feature flag. If private, flag is hidden.', max_length=20)), |
| 29 | + ('support_level', models.CharField(choices=[('DEVELOPER_PREVIEW', 'Developer Preview'), ('TECHNICAL_PREVIEW', 'Technical Preview')], help_text='The support criteria for the feature flag. Must be one of (DEVELOPER_PREVIEW or TECHNICAL_PREVIEW).', max_length=25)), |
| 30 | + ('visibility', models.BooleanField(default=False, help_text='The visibility of the feature flag. If false, flag is hidden.')), |
31 | 31 | ('toggle_type', models.CharField(choices=[('install-time', 'install-time'), ('run-time', 'run-time')], default='run-time', help_text="Details whether a flag is toggle-able at run-time or install-time. (Default: 'run-time').", max_length=20)),
|
32 | 32 | ('description', models.CharField(default='', help_text='A detailed description giving an overview of the feature flag.', max_length=500)),
|
33 | 33 | ('support_url', models.CharField(blank=True, default='', help_text='A link to the documentation support URL for the feature', max_length=250)),
|
|
0 commit comments