-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
124 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,25 @@ | ||
""" | ||
URLs for edx_name_affirmation. | ||
""" | ||
from django.conf.urls import include, url | ||
|
||
from django.urls import include, path | ||
|
||
from edx_name_affirmation import views | ||
|
||
app_name = 'edx_name_affirmation' | ||
|
||
urlpatterns = [ | ||
url( | ||
r'edx_name_affirmation/v1/verified_name$', | ||
views.VerifiedNameView.as_view(), | ||
name='verified_name' | ||
), | ||
path('edx_name_affirmation/v1/verified_name', views.VerifiedNameView.as_view(), | ||
name='verified_name' | ||
), | ||
|
||
url( | ||
r'edx_name_affirmation/v1/verified_name/history$', | ||
views.VerifiedNameHistoryView.as_view(), | ||
name='verified_name_history' | ||
), | ||
path('edx_name_affirmation/v1/verified_name/history', views.VerifiedNameHistoryView.as_view(), | ||
name='verified_name_history' | ||
), | ||
|
||
url( | ||
r'edx_name_affirmation/v1/verified_name/config$', | ||
views.VerifiedNameConfigView.as_view(), | ||
name='verified_name_config' | ||
), | ||
path('edx_name_affirmation/v1/verified_name/config', views.VerifiedNameConfigView.as_view(), | ||
name='verified_name_config' | ||
), | ||
|
||
url(r'^', include('rest_framework.urls', namespace='rest_framework')), | ||
path('', include('rest_framework.urls', namespace='rest_framework')), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
celery>=4.4,<4.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# | ||
# This file is autogenerated by pip-compile with python 3.8 | ||
# To update, run: | ||
# | ||
# pip-compile --output-file=requirements/celery44.txt requirements/celery44.in | ||
# | ||
amqp==2.6.1 | ||
# via kombu | ||
billiard==3.6.4.0 | ||
# via celery | ||
celery==4.4.7 | ||
# via -r requirements/celery44.in | ||
kombu==4.6.11 | ||
# via celery | ||
pytz==2021.3 | ||
# via celery | ||
vine==1.3.0 | ||
# via | ||
# amqp | ||
# celery |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
celery>=5.0,<6.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,42 @@ | ||
# | ||
# This file is autogenerated by pip-compile with python 3.8 | ||
# To update, run: | ||
# | ||
# pip-compile --output-file=requirements/celery50.txt requirements/celery50.in | ||
# | ||
amqp==5.0.9 | ||
# via kombu | ||
billiard==3.6.4.0 | ||
# via celery | ||
celery==5.2.3 | ||
# via -r requirements/celery50.in | ||
click==8.0.3 | ||
# via | ||
# celery | ||
# click-didyoumean | ||
# click-plugins | ||
# click-repl | ||
click-didyoumean==0.3.0 | ||
# via celery | ||
click-plugins==1.1.1 | ||
# via celery | ||
click-repl==0.2.0 | ||
# via celery | ||
kombu==5.2.3 | ||
prompt-toolkit==3.0.26 | ||
# via celery | ||
prompt-toolkit==3.0.28 | ||
# via click-repl | ||
pytz==2021.3 | ||
# via celery | ||
six==1.16.0 | ||
# via click-repl | ||
vine==5.0.0 | ||
# via | ||
# amqp | ||
# celery | ||
# kombu | ||
wcwidth==0.2.5 | ||
# via prompt-toolkit | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# setuptools |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from django.conf.urls import include, url | ||
from django.urls import path, include | ||
|
||
urlpatterns = [ | ||
url(r'^', include('edx_name_affirmation.urls', namespace='edx_name_affirmation')), | ||
path('', include('edx_name_affirmation.urls', namespace='edx_name_affirmation')), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters