Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Change Log
Unreleased
**********

[7.7.0] - 2026-05-26
********************
Fixed
=====
* Added trailing slash to ``retire_certs_s3_for_user/`` URL pattern.

[7.6.0] - 2026-05-11
********************
Added
Expand Down
2 changes: 1 addition & 1 deletion edx_arch_experiments/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
A plugin to include applications under development by the architecture team at 2U.
"""

__version__ = '7.6.0'
__version__ = '7.7.0'
2 changes: 1 addition & 1 deletion edx_arch_experiments/certificates/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ class TestRetireCertificatesS3ForUserView(_BaseViewTestCase):
def _post(self, data=None):
"""POST to retire_certs_s3_for_user and return the DRF Response."""
request = self.factory.post(
'/api/certificates/v1/retire_certs_s3_for_user',
'/api/certificates/v1/retire_certs_s3_for_user/',
data=json.dumps(data or {}),
content_type='application/json',
)
Expand Down
2 changes: 1 addition & 1 deletion edx_arch_experiments/certificates/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@

urlpatterns = [
path('retire_certs_s3', RetireCertificatesS3View.as_view(), name='retire_certs_s3'),
path('retire_certs_s3_for_user', RetireCertificatesS3ForUserView.as_view(), name='retire_certs_s3_for_user'),
path('retire_certs_s3_for_user/', RetireCertificatesS3ForUserView.as_view(), name='retire_certs_s3_for_user'),
Comment thread
ttak-apphelix marked this conversation as resolved.
]
Loading