Expand scope of enterprise user types.

This commit is contained in:
Aaron Tan
2017-06-19 16:57:12 -04:00
parent 8061667ace
commit 70cccb0e57
5 changed files with 57 additions and 11 deletions

View 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')]),
),
]