瀏覽代碼

Merge pull request #4837 from pratu16x7/hotfix

[fix] slideshow private images validation
version-14
Prateeksha Singh 7 年之前
committed by GitHub
父節點
當前提交
2223671ca7
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: 4AEE18F83AFDEB23
共有 1 個檔案被更改,包括 4 行新增3 行删除
  1. +4
    -3
      frappe/website/doctype/website_slideshow/website_slideshow.py

+ 4
- 3
frappe/website/doctype/website_slideshow/website_slideshow.py 查看文件

@@ -21,9 +21,10 @@ class WebsiteSlideshow(Document):
def validate_images(self):
''' atleast one image file should be public for slideshow '''
files = map(lambda row: row.image, self.slideshow_items)
result = frappe.get_all("File", filters={ "file_url":("in", files) }, fields="is_private")
if any([file.is_private for file in result]):
frappe.throw(_("All Images attached to Website Slideshow should be public"))
if files:
result = frappe.get_all("File", filters={ "file_url":("in", files) }, fields="is_private")
if any([file.is_private for file in result]):
frappe.throw(_("All Images attached to Website Slideshow should be public"))

def get_slideshow(doc):
if not doc.slideshow:


Loading…
取消
儲存