瀏覽代碼

fix: don't attempt to delete workspace in prod

(cherry picked from commit bde4e44cf4)
version-14
Ankush Menat 2 年之前
committed by Ankush Menat
父節點
當前提交
0202f774d0
共有 1 個檔案被更改,包括 4 行新增1 行删除
  1. +4
    -1
      frappe/desk/doctype/workspace/workspace.py

+ 4
- 1
frappe/desk/doctype/workspace/workspace.py 查看文件

@@ -42,7 +42,10 @@ class Workspace(Document):
self.name = doc.name = doc.label = doc.title

def after_delete(self):
if self.module:
if disable_saving_as_public():
return

if self.module and frappe.conf.developer_mode:
delete_folder(self.module, "Workspace", self.title)

@staticmethod


Loading…
取消
儲存