mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-17 21:38:37 -05:00
21 lines
710 B
Python
21 lines
710 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.11 on 2018-07-25 21:24
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0045_v330_instance_managed_by_policy'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='oauth2application',
|
|
name='authorization_grant_type',
|
|
field=models.CharField(choices=[(b'authorization-code', 'Authorization code'), (b'implicit', 'Implicit'), (b'password', 'Resource owner password-based')], help_text='The Grant type the user must use for acquire tokens for this application.', max_length=32),
|
|
),
|
|
]
|