django-oidc-provider/oidc_provider/migrations/0024_auto_20180327_1959.py
Juan Ignacio Fiorentino 582587f337 Fix PEP8. New migration.
2018-03-27 17:15:06 -03:00

19 lines
587 B
Python

# Generated by Django 2.0.3 on 2018-03-27 19:59
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('oidc_provider', '0023_client_owner'),
]
operations = [
migrations.AlterField(
model_name='client',
name='reuse_consent',
field=models.BooleanField(default=True, help_text="If enabled, server will save the user consent given to a specific client, so that user won't be prompted for the same authorization multiple times.", verbose_name='Reuse Consent?'),
),
]