mirror of
https://github.com/ansible/awx.git
synced 2026-08-01 02:19:55 -02:30
Expand scope of enterprise user types.
This commit is contained in:
19
awx/sso/migrations/0002_expand_provider_options.py
Normal file
19
awx/sso/migrations/0002_expand_provider_options.py
Normal file
@@ -0,0 +1,19 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('sso', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='userenterpriseauth',
|
||||
name='provider',
|
||||
field=models.CharField(max_length=32, choices=[(b'radius', 'RADIUS'), (b'tacacs+', 'TACACS+'), (b'saml', 'SAML')]),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user