openedx-authz 0.1.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.
Files changed (47) hide show
  1. openedx_authz-0.1.0/CHANGELOG.rst +35 -0
  2. openedx_authz-0.1.0/LICENSE +661 -0
  3. openedx_authz-0.1.0/MANIFEST.in +6 -0
  4. openedx_authz-0.1.0/PKG-INFO +119 -0
  5. openedx_authz-0.1.0/README.rst +42 -0
  6. openedx_authz-0.1.0/openedx_authz/__init__.py +9 -0
  7. openedx_authz-0.1.0/openedx_authz/api/__init__.py +11 -0
  8. openedx_authz-0.1.0/openedx_authz/api/data.py +660 -0
  9. openedx_authz-0.1.0/openedx_authz/api/permissions.py +68 -0
  10. openedx_authz-0.1.0/openedx_authz/api/roles.py +380 -0
  11. openedx_authz-0.1.0/openedx_authz/api/users.py +191 -0
  12. openedx_authz-0.1.0/openedx_authz/apps.py +41 -0
  13. openedx_authz-0.1.0/openedx_authz/engine/__init__.py +0 -0
  14. openedx_authz-0.1.0/openedx_authz/engine/adapter.py +123 -0
  15. openedx_authz-0.1.0/openedx_authz/engine/config/authz.policy +60 -0
  16. openedx_authz-0.1.0/openedx_authz/engine/config/model.conf +95 -0
  17. openedx_authz-0.1.0/openedx_authz/engine/enforcer.py +38 -0
  18. openedx_authz-0.1.0/openedx_authz/engine/filter.py +80 -0
  19. openedx_authz-0.1.0/openedx_authz/engine/utils.py +55 -0
  20. openedx_authz-0.1.0/openedx_authz/engine/watcher.py +59 -0
  21. openedx_authz-0.1.0/openedx_authz/management/__init__.py +0 -0
  22. openedx_authz-0.1.0/openedx_authz/management/commands/__init__.py +0 -0
  23. openedx_authz-0.1.0/openedx_authz/management/commands/enforcement.py +205 -0
  24. openedx_authz-0.1.0/openedx_authz/management/commands/load_policies.py +90 -0
  25. openedx_authz-0.1.0/openedx_authz/models.py +10 -0
  26. openedx_authz-0.1.0/openedx_authz/settings/__init__.py +0 -0
  27. openedx_authz-0.1.0/openedx_authz/settings/common.py +32 -0
  28. openedx_authz-0.1.0/openedx_authz/settings/production.py +14 -0
  29. openedx_authz-0.1.0/openedx_authz/settings/test.py +59 -0
  30. openedx_authz-0.1.0/openedx_authz/templates/openedx_authz/base.html +26 -0
  31. openedx_authz-0.1.0/openedx_authz/tests/api/__init__.py +0 -0
  32. openedx_authz-0.1.0/openedx_authz/tests/api/test_data.py +514 -0
  33. openedx_authz-0.1.0/openedx_authz/tests/api/test_roles.py +1133 -0
  34. openedx_authz-0.1.0/openedx_authz/tests/api/test_users.py +415 -0
  35. openedx_authz-0.1.0/openedx_authz/urls.py +11 -0
  36. openedx_authz-0.1.0/openedx_authz.egg-info/PKG-INFO +119 -0
  37. openedx_authz-0.1.0/openedx_authz.egg-info/SOURCES.txt +46 -0
  38. openedx_authz-0.1.0/openedx_authz.egg-info/dependency_links.txt +1 -0
  39. openedx_authz-0.1.0/openedx_authz.egg-info/entry_points.txt +5 -0
  40. openedx_authz-0.1.0/openedx_authz.egg-info/not-zip-safe +1 -0
  41. openedx_authz-0.1.0/openedx_authz.egg-info/requires.txt +7 -0
  42. openedx_authz-0.1.0/openedx_authz.egg-info/top_level.txt +1 -0
  43. openedx_authz-0.1.0/requirements/base.in +12 -0
  44. openedx_authz-0.1.0/requirements/constraints.txt +12 -0
  45. openedx_authz-0.1.0/setup.cfg +15 -0
  46. openedx_authz-0.1.0/setup.py +170 -0
  47. openedx_authz-0.1.0/tests/test_models.py +15 -0
@@ -0,0 +1,35 @@
1
+ Change Log
2
+ ##########
3
+
4
+ ..
5
+ All enhancements and patches to openedx_authz will be documented
6
+ in this file. It adheres to the structure of https://keepachangelog.com/ ,
7
+ but in reStructuredText instead of Markdown (for ease of incorporation into
8
+ Sphinx documentation and the PyPI description).
9
+
10
+ This project adheres to Semantic Versioning (https://semver.org/).
11
+
12
+ .. There should always be an "Unreleased" section for changes pending release.
13
+
14
+ Unreleased
15
+ **********
16
+
17
+ *
18
+
19
+ 0.1.0 - 2025-08-27
20
+ ******************
21
+
22
+ Added
23
+ =====
24
+
25
+ * Basic repo structure and initial setup.
26
+
27
+ 0.2.0 - 2025-10-10
28
+ ******************
29
+
30
+ Added
31
+ =====
32
+
33
+ * ADRs for key design decisions.
34
+ * Casbin model (CONF) and engine layer for authorization.
35
+ * Implementation of public API for roles and permissions management.