Skip to content

Issues 43 & 67 #69

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 37 commits into from
Feb 21, 2020
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
0a2ba44
Added new routes for JTW auth.
BethanyG Dec 20, 2019
fb795c6
Resolved conflicts.
BethanyG Feb 18, 2020
dda778e
Utility and support files for JWT login support.
BethanyG Dec 20, 2019
1051c3c
Wired up new userauth app.
BethanyG Dec 20, 2019
f4fd46b
Adjusted urls and moved util file out of app.
BethanyG Dec 25, 2019
706e3f2
Added JWT_AUTH var to settings.
BethanyG Dec 25, 2019
eab30e8
Changed url routes and modified serch_field for media_type.
BethanyG Jan 7, 2020
74d7456
Added JWT obtain, verify, and refresh endpoints.
BethanyG Jan 7, 2020
c772c20
JWT changes.
BethanyG Jan 7, 2020
92cf6d9
Added rederer classes and additonal JWT_AUTH vars for updating and re…
BethanyG Jan 7, 2020
8486639
Added patch method on the ResourceView to enable updates to a single …
BethanyG Jan 7, 2020
0eb46d6
Solves issue 24: rename model fields
Jan 8, 2020
d614702
Sample users and resources for dev and testing purposes.
BethanyG Jan 11, 2020
cd1bf41
Changed field descriptions as per issue-24 and modified field limits …
BethanyG Jan 12, 2020
77e246a
cbv3_django_prototype/resources/views.py
BethanyG Jan 12, 2020
8974f2f
Cleaned up url paths a bit for clarity.
BethanyG Jan 12, 2020
c796322
Update README.md
lpatmo Jan 14, 2020
3a4e6dd
Resource model canges added pk,change id field to guid, changed guid…
BethanyG Feb 18, 2020
4d2c277
Added code to retrieve and flatten related tags for admin Resources i…
BethanyG Feb 18, 2020
1aa43dd
Added fixtures for Resources and Tags for test data.
BethanyG Feb 18, 2020
dcb34e9
Added serializer for Tag field, tagging, and Resource.
BethanyG Feb 18, 2020
95d82b8
Added additional fields to UserSerializer and a lookup_field.
BethanyG Feb 18, 2020
4f046d0
Added tests for CRUD operations for Resources.
BethanyG Feb 18, 2020
ac729c0
Added tests for CRUD operations for users and JWT tokens.
BethanyG Feb 18, 2020
75de8c5
Added user data for testing and inital db load.
BethanyG Feb 18, 2020
8b38721
Adjusted settings.
BethanyG Feb 18, 2020
4e30cb9
Changed template for 500 error path.
BethanyG Feb 18, 2020
c45ed1e
Added taggit and taggit serializer to requirements.
BethanyG Feb 18, 2020
503117b
Deleted the pytest config in the hopes it would correct the test path…
BethanyG Feb 18, 2020
7430867
Deleted mangled migration file.
BethanyG Feb 18, 2020
870e1a6
Fix URL for codebuddies/frontend repo
billglover Feb 18, 2020
a7e37bb
Changed the ordering of slug and tag_names in call to zip() in to_rep…
BethanyG Feb 19, 2020
5ccf89a
Altered the fields returned by the serializer to omit email.
BethanyG Feb 19, 2020
ba8fa25
Altered data to omit Bethanyg user info.
BethanyG Feb 19, 2020
0e2d268
Ommitted created user from setup. Removed contrib import and user_mo…
BethanyG Feb 19, 2020
cd17299
removed taggit from local.txt. Re-ordered entries in base.txt to app…
BethanyG Feb 19, 2020
add7148
Merge branch 'issue-43' of https://github.com/BethanyG/django-concept…
BethanyG Feb 19, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added tests for CRUD operations for users and JWT tokens.
  • Loading branch information
BethanyG committed Feb 18, 2020
commit ac729c0b6e600c678c0c08da4421e7aed7bd5c1e
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import unittest
from unittest.mock import patch
from rest_framework import status, serializers
from rest_framework.test import APITestCase
Expand Down