cms-jwt 0.2.0__tar.gz → 0.4.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/PKG-INFO +1 -1
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt.egg-info/PKG-INFO +1 -1
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt.egg-info/SOURCES.txt +4 -1
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt_import_auth/middleware.py +1 -1
- cms_jwt-0.4.0/cms_jwt_import_auth/settings/__init__.py +0 -0
- cms_jwt-0.4.0/cms_jwt_import_auth/settings/common.py +4 -0
- cms_jwt-0.4.0/cms_jwt_import_auth/settings/production.py +5 -0
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/setup.py +3 -3
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt.egg-info/dependency_links.txt +0 -0
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt.egg-info/entry_points.txt +0 -0
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt.egg-info/top_level.txt +0 -0
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt_import_auth/__init__.py +0 -0
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt_import_auth/apps.py +0 -0
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/cms_jwt_import_auth/bkp_tutor.py +0 -0
- {cms_jwt-0.2.0 → cms_jwt-0.4.0}/setup.cfg +0 -0
@@ -7,4 +7,7 @@ cms_jwt.egg-info/top_level.txt
|
|
7
7
|
cms_jwt_import_auth/__init__.py
|
8
8
|
cms_jwt_import_auth/apps.py
|
9
9
|
cms_jwt_import_auth/bkp_tutor.py
|
10
|
-
cms_jwt_import_auth/middleware.py
|
10
|
+
cms_jwt_import_auth/middleware.py
|
11
|
+
cms_jwt_import_auth/settings/__init__.py
|
12
|
+
cms_jwt_import_auth/settings/common.py
|
13
|
+
cms_jwt_import_auth/settings/production.py
|
@@ -25,7 +25,7 @@ class ImportJWTOrSessionMiddleware(MiddlewareMixin):
|
|
25
25
|
# Path matcher (strict, trailing slash optional)
|
26
26
|
# Example: /api/courses/v1/course-v1:ACME+ONB101+2025_T1/import/
|
27
27
|
PATTERN = re.compile(
|
28
|
-
r"^/
|
28
|
+
r"^/import/course-v1:[A-Za-z0-9+._-]+/?$"
|
29
29
|
)
|
30
30
|
|
31
31
|
def process_request(self, request):
|
File without changes
|
@@ -6,9 +6,9 @@ Setup file for eox_core Django plugin.
|
|
6
6
|
import os
|
7
7
|
import re
|
8
8
|
|
9
|
-
from setuptools import setup
|
9
|
+
from setuptools import setup,find_packages
|
10
10
|
|
11
|
-
VERSION = "0.
|
11
|
+
VERSION = "0.4.0"
|
12
12
|
|
13
13
|
|
14
14
|
|
@@ -17,7 +17,7 @@ setup(
|
|
17
17
|
python_requires='>=3.10',
|
18
18
|
version=VERSION,
|
19
19
|
|
20
|
-
packages=
|
20
|
+
packages=find_packages(),
|
21
21
|
include_package_data=True,
|
22
22
|
entry_points={
|
23
23
|
"cms.djangoapp": [
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|