Skip to content

Commit 9f869ff

Browse files
author
Baylee Feore
committed
Initial commit
0 parents  commit 9f869ff

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

.gitignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
*.pyc
2+
*.pyo
3+
*.db
4+
.DS_Store
5+
.coverage
6+
local_settings.py
7+
/static
8+
.idea/

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
rest-user
2+
=======================
3+
4+
User relevant API resources for signing up, logging in, getting user information, and editing user information using Django REST Framework and OAuth2.0
5+
6+
Expects that a custom user model is defined in settings.AUTH_USER_MODEL in line with Django 1.5+.

__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__author__ = 'baylee'

rest_user/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__author__ = 'baylee'

rest_user/views.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
__author__ = 'baylee'
2+
3+
4+
User = get_user_model()

0 commit comments

Comments
 (0)