├── .gitignore ├── Makefile ├── README.md ├── assets ├── js │ ├── app.js │ └── templates │ │ ├── application.handlebars │ │ └── session.handlebars ├── tests │ ├── integration_test_helper.js │ └── integration_tests.js └── vendor │ ├── adapter.js │ ├── ember-data.js │ ├── ember.js │ ├── handlebars.js │ ├── jquery.js │ └── jquery.mockjax.js ├── circle.yml ├── karma.conf.js ├── manage.py ├── package.json ├── requirements.txt ├── server ├── __init__.py ├── settings.py ├── templates │ ├── application.html │ └── include │ │ ├── csrf.html │ │ ├── ember.html │ │ ├── head.html │ │ └── jquery.html ├── test_settings.py ├── urls.py └── wsgi.py ├── session ├── __init__.py ├── tests.py └── views.py └── users ├── __init__.py ├── fixtures └── initial_data.json ├── serializers.py ├── tests.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/README.md -------------------------------------------------------------------------------- /assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/js/app.js -------------------------------------------------------------------------------- /assets/js/templates/application.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/js/templates/application.handlebars -------------------------------------------------------------------------------- /assets/js/templates/session.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/js/templates/session.handlebars -------------------------------------------------------------------------------- /assets/tests/integration_test_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/tests/integration_test_helper.js -------------------------------------------------------------------------------- /assets/tests/integration_tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/tests/integration_tests.js -------------------------------------------------------------------------------- /assets/vendor/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/vendor/adapter.js -------------------------------------------------------------------------------- /assets/vendor/ember-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/vendor/ember-data.js -------------------------------------------------------------------------------- /assets/vendor/ember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/vendor/ember.js -------------------------------------------------------------------------------- /assets/vendor/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/vendor/handlebars.js -------------------------------------------------------------------------------- /assets/vendor/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/vendor/jquery.js -------------------------------------------------------------------------------- /assets/vendor/jquery.mockjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/assets/vendor/jquery.mockjax.js -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/circle.yml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/karma.conf.js -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/manage.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/package.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/settings.py -------------------------------------------------------------------------------- /server/templates/application.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/templates/application.html -------------------------------------------------------------------------------- /server/templates/include/csrf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/templates/include/csrf.html -------------------------------------------------------------------------------- /server/templates/include/ember.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/templates/include/ember.html -------------------------------------------------------------------------------- /server/templates/include/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/templates/include/head.html -------------------------------------------------------------------------------- /server/templates/include/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/templates/include/jquery.html -------------------------------------------------------------------------------- /server/test_settings.py: -------------------------------------------------------------------------------- 1 | from server.settings import * 2 | 3 | 4 | DATABASES['default']['NAME'] = ':memory:' 5 | -------------------------------------------------------------------------------- /server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/urls.py -------------------------------------------------------------------------------- /server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/server/wsgi.py -------------------------------------------------------------------------------- /session/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /session/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/session/tests.py -------------------------------------------------------------------------------- /session/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/session/views.py -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/users/fixtures/initial_data.json -------------------------------------------------------------------------------- /users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/users/serializers.py -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dustinfarris/django-ember-authentication/HEAD/users/views.py --------------------------------------------------------------------------------