├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── authentication.md ├── css │ └── extra.css ├── index.md └── permissions.md ├── mkdocs.yml ├── requirements.txt ├── rest_framework_oauth ├── __init__.py ├── authentication.py ├── compat.py └── permissions.py ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── models.py └── test_authentication.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/README.md -------------------------------------------------------------------------------- /docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/docs/authentication.md -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/permissions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/docs/permissions.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/requirements.txt -------------------------------------------------------------------------------- /rest_framework_oauth/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.0' 2 | -------------------------------------------------------------------------------- /rest_framework_oauth/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/rest_framework_oauth/authentication.py -------------------------------------------------------------------------------- /rest_framework_oauth/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/rest_framework_oauth/compat.py -------------------------------------------------------------------------------- /rest_framework_oauth/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/rest_framework_oauth/permissions.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/tests/test_authentication.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jpadilla/django-rest-framework-oauth/HEAD/tox.ini --------------------------------------------------------------------------------