We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80b6326 commit 44cb553Copy full SHA for 44cb553
upgrade_logic/business_objects/gateway.py
@@ -14,6 +14,14 @@
14
def gateway_1_15_0() -> bool:
15
# Note: A previous version had the previous update listed as v1.15.
16
# That was false, the updates already ran through. This is now for the actual 1.15 release
17
+ __gateway_1_15_0_add_default_admin_log_level()
18
+ return True
19
+
20
21
+def __gateway_1_15_0_add_default_admin_log_level() -> bool:
22
+ query = "UPDATE organization SET log_admin_requests = 'NO_GET' WHERE log_admin_requests IS NULL"
23
+ general.execute(query)
24
+ general.commit()
25
return True
26
27
0 commit comments