cfl-common 8.8.2__py3-none-any.whl → 8.9.0__py3-none-any.whl

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cfl-common
3
- Version: 8.8.2
3
+ Version: 8.9.0
4
4
  Classifier: Programming Language :: Python :: 3
5
5
  Classifier: Operating System :: OS Independent
6
6
  Requires-Dist: asgiref==3.9.1; python_version >= "3.9"
@@ -1,5 +1,5 @@
1
1
  common/__init__.py,sha256=XlncBOpKp_gekbKH7Y_i6yu1qy5tJc3Y8sn8cDy-Vgk,48
2
- common/app_settings.py,sha256=Bw1DXkZpNIdwUJ-cIOjZnngH5_NbMXC0koW7NgQ0pKY,2495
2
+ common/app_settings.py,sha256=TCUlvuVH4Y3d8EITuWyvY4sjxnA7gJnAZyTd8yfV3zE,2592
3
3
  common/apps.py,sha256=49UXZ3bSkFKvIEOL4zM7y1sAhccQJyRtsoOg5XVd_8Y,129
4
4
  common/context_processors.py,sha256=X0iuX5qu9kMWa7q8osE9CJ2LgM7pPOYQFGdjm8X3rk0,236
5
5
  common/csp_config.py,sha256=saeg9LbRr5xw7NDJPlt6fqi8Zz0vI8Rpc4VCS6oJNe8,2976
@@ -93,7 +93,7 @@ common/tests/utils/organisation.py,sha256=vNgKFtU3VPcWRnZfh82yCS90PLAK1XTYJNIxGw
93
93
  common/tests/utils/student.py,sha256=PLd980iSlxmMoB8J3C2pVjNC5xHdVxfAkJXzhv_dRhg,3814
94
94
  common/tests/utils/teacher.py,sha256=KQ_NAl4yQqiX_zwcULQjkovc29JPhnkLR5Nk3Ljzbpg,2661
95
95
  common/tests/utils/user.py,sha256=NvLzZLVP4jy5Hn1iztOYF_BTQ9WsbSmuWMEzGzhAsRU,919
96
- cfl_common-8.8.2.dist-info/METADATA,sha256=Kh1Xn8bbG2qtnxnnazy-vx-cI9MBvvhSyhicfgWmyrk,2488
97
- cfl_common-8.8.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
98
- cfl_common-8.8.2.dist-info/top_level.txt,sha256=LOtYx8KZTmnxM_zLK4rwrcI3PRc40Ihwp5rgaQ-ceaI,7
99
- cfl_common-8.8.2.dist-info/RECORD,,
96
+ cfl_common-8.9.0.dist-info/METADATA,sha256=MhGHnDdvVZGMGxWrBLGqeG82bGaN9muYXUqbKikXs7U,2488
97
+ cfl_common-8.9.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
98
+ cfl_common-8.9.0.dist-info/top_level.txt,sha256=LOtYx8KZTmnxM_zLK4rwrcI3PRc40Ihwp5rgaQ-ceaI,7
99
+ cfl_common-8.9.0.dist-info/RECORD,,
common/app_settings.py CHANGED
@@ -44,6 +44,9 @@ DOTMAILER_SEND_CAMPAIGN_URL = getattr(settings, "DOTMAILER_SEND_CAMPAIGN_URL", "
44
44
  # ID of the "Thanks for staying!" campaign in Dotmailer
45
45
  DOTMAILER_THANKS_FOR_STAYING_CAMPAIGN_ID = getattr(settings, "DOTMAILER_THANKS_FOR_STAYING_CAMPAIGN_ID", "")
46
46
 
47
+ # Fernet encryption for OAuth2 sign in
48
+ ENCRYPTION_KEY = getattr(settings, "ENCRYPTION_KEY", "")
49
+
47
50
  # The name of the google app engine service the application is running on, local otherwise
48
51
  MODULE_NAME = getattr(settings, "MODULE_NAME", "local")
49
52