├── .github └── workflows │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── __init__.py ├── bin └── new_max.py ├── docs └── index.rst ├── fcm_django ├── __init__.py ├── admin.py ├── api │ ├── __init__.py │ ├── rest_framework.py │ └── tastypie.py ├── apps.py ├── fields.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20160808_1645.py │ ├── 0003_auto_20170313_1314.py │ ├── 0004_auto_20181128_1642.py │ ├── 0005_auto_20170808_1145.py │ ├── 0006_auto_20210802_1140.py │ ├── 0007_auto_20211001_1440.py │ ├── 0008_auto_20211224_1205.py │ ├── 0009_alter_fcmdevice_user.py │ ├── 0010_unique_registration_id.py │ ├── 0011_fcmdevice_fcm_django_registration_id_user_id_idx.py │ └── __init__.py ├── models.py └── settings.py ├── pyproject.toml ├── requirements.txt ├── requirements_dev.txt ├── requirements_test.txt ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── conftest.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── default.py │ └── swap.py ├── swapped_models │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── test_admin.py ├── test_api_rest_framework.py ├── test_api_tastypie.py ├── test_models.py └── urls.py └── tox.ini /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/README.rst -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "xtrinch" 2 | -------------------------------------------------------------------------------- /bin/new_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/bin/new_max.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/docs/index.rst -------------------------------------------------------------------------------- /fcm_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/__init__.py -------------------------------------------------------------------------------- /fcm_django/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/admin.py -------------------------------------------------------------------------------- /fcm_django/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/api/__init__.py -------------------------------------------------------------------------------- /fcm_django/api/rest_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/api/rest_framework.py -------------------------------------------------------------------------------- /fcm_django/api/tastypie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/api/tastypie.py -------------------------------------------------------------------------------- /fcm_django/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/apps.py -------------------------------------------------------------------------------- /fcm_django/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/fields.py -------------------------------------------------------------------------------- /fcm_django/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0001_initial.py -------------------------------------------------------------------------------- /fcm_django/migrations/0002_auto_20160808_1645.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0002_auto_20160808_1645.py -------------------------------------------------------------------------------- /fcm_django/migrations/0003_auto_20170313_1314.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0003_auto_20170313_1314.py -------------------------------------------------------------------------------- /fcm_django/migrations/0004_auto_20181128_1642.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0004_auto_20181128_1642.py -------------------------------------------------------------------------------- /fcm_django/migrations/0005_auto_20170808_1145.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0005_auto_20170808_1145.py -------------------------------------------------------------------------------- /fcm_django/migrations/0006_auto_20210802_1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0006_auto_20210802_1140.py -------------------------------------------------------------------------------- /fcm_django/migrations/0007_auto_20211001_1440.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0007_auto_20211001_1440.py -------------------------------------------------------------------------------- /fcm_django/migrations/0008_auto_20211224_1205.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0008_auto_20211224_1205.py -------------------------------------------------------------------------------- /fcm_django/migrations/0009_alter_fcmdevice_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0009_alter_fcmdevice_user.py -------------------------------------------------------------------------------- /fcm_django/migrations/0010_unique_registration_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0010_unique_registration_id.py -------------------------------------------------------------------------------- /fcm_django/migrations/0011_fcmdevice_fcm_django_registration_id_user_id_idx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/migrations/0011_fcmdevice_fcm_django_registration_id_user_id_idx.py -------------------------------------------------------------------------------- /fcm_django/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fcm_django/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/models.py -------------------------------------------------------------------------------- /fcm_django/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/fcm_django/settings.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/settings/base.py -------------------------------------------------------------------------------- /tests/settings/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/settings/default.py -------------------------------------------------------------------------------- /tests/settings/swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/settings/swap.py -------------------------------------------------------------------------------- /tests/swapped_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/swapped_models/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/swapped_models/admin.py -------------------------------------------------------------------------------- /tests/swapped_models/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/swapped_models/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/swapped_models/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/swapped_models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/swapped_models/models.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_api_rest_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/test_api_rest_framework.py -------------------------------------------------------------------------------- /tests/test_api_tastypie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/test_api_tastypie.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xtrinch/fcm-django/HEAD/tox.ini --------------------------------------------------------------------------------