Metadata-Version: 2.1
Name: drf-allauthmail
Version: 0.0.2
Summary: provide endpoints of allauth's EmailAddress Model
Home-page: https://github.com/fumuumuf/drf_allauthmail/
Author: fumuumuf
Author-email: kitosiro2@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Requires-Dist: Django (>=2.0.6)
Requires-Dist: django-allauth (>=0.36.0)
Requires-Dist: djangorestframework (>=3.8.2)

=====
drf_allauthmail
=====

drf_allauthmail provide REST endpoints of allauth's EmailAddress Model.

Quick start
-----------

1. Add "polls" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...
        'drf_allauthmail',
    ]

2. Include the polls URLconf in your project urls.py like this::

    path('mails/', include('drf_allauthmail.urls')),

3. Visit http://127.0.0.1:8000/mails/ to refer your e-mail addresses.


