20 lines
809 B
Python
20 lines
809 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9 on 2016-09-08 16:27
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('oidc_provider', '0017_auto_20160811_1954'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='client',
|
|
name='response_type',
|
|
field=models.CharField(choices=[(b'code', b'code (Authorization Code Flow)'), (b'id_token', b'id_token (Implicit Flow)'), (b'id_token token', b'id_token token (Implicit Flow)'), (b'code token', b'code token (Hybrid Flow)'), (b'code id_token', b'code id_token (Hybrid Flow)'), (b'code id_token token', b'code id_token token (Hybrid Flow)')], max_length=30, verbose_name='Response Type'),
|
|
),
|
|
]
|