├── .gitignore ├── LICENSE ├── README.md ├── api_crud ├── __init__.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── authentication ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── movies ├── __init__.py ├── admin.py ├── apps.py ├── filters.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── pagination.py ├── permissions.py ├── serializers.py ├── urls.py └── views.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/README.md -------------------------------------------------------------------------------- /api_crud/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_crud/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/api_crud/settings.py -------------------------------------------------------------------------------- /api_crud/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/api_crud/urls.py -------------------------------------------------------------------------------- /api_crud/views.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_crud/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/api_crud/wsgi.py -------------------------------------------------------------------------------- /authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/authentication/admin.py -------------------------------------------------------------------------------- /authentication/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/authentication/apps.py -------------------------------------------------------------------------------- /authentication/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /authentication/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/authentication/models.py -------------------------------------------------------------------------------- /authentication/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/authentication/serializers.py -------------------------------------------------------------------------------- /authentication/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/authentication/tests.py -------------------------------------------------------------------------------- /authentication/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/authentication/urls.py -------------------------------------------------------------------------------- /authentication/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/authentication/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/manage.py -------------------------------------------------------------------------------- /movies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movies/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/admin.py -------------------------------------------------------------------------------- /movies/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/apps.py -------------------------------------------------------------------------------- /movies/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/filters.py -------------------------------------------------------------------------------- /movies/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/migrations/0001_initial.py -------------------------------------------------------------------------------- /movies/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/models.py -------------------------------------------------------------------------------- /movies/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/pagination.py -------------------------------------------------------------------------------- /movies/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/permissions.py -------------------------------------------------------------------------------- /movies/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/serializers.py -------------------------------------------------------------------------------- /movies/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/urls.py -------------------------------------------------------------------------------- /movies/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/movies/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbeniteza/django-rest-framework-crud/HEAD/requirements.txt --------------------------------------------------------------------------------