-
-
Notifications
You must be signed in to change notification settings - Fork 800
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Conflicts: README.rst docs/changelog.rst
- Loading branch information
Showing
5 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '0.8.1' | ||
__version__ = '0.8.2' | ||
|
||
__author__ = "Massimiliano Pippi & Federico Frenguelli" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from oauth2_provider.settings import oauth2_settings | ||
from django.db import models, migrations | ||
import oauth2_provider.validators | ||
import oauth2_provider.generators | ||
from django.conf import settings | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('oauth2_provider', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='Application', | ||
name='skip_authorization', | ||
field=models.BooleanField(default=False), | ||
preserve_default=True, | ||
), | ||
migrations.AlterField( | ||
model_name='Application', | ||
name='user', | ||
field=models.ForeignKey(related_name='oauth2_provider_application', to=settings.AUTH_USER_MODEL), | ||
preserve_default=True, | ||
), | ||
migrations.AlterField( | ||
model_name='AccessToken', | ||
name='user', | ||
field=models.ForeignKey(blank=True, to=settings.AUTH_USER_MODEL, null=True), | ||
preserve_default=True, | ||
), | ||
] |