瀏覽代碼

Fix/2559 upload powered by brand image not showing up (#2602)

tags/0.5.7
crazywoola 1 年之前
父節點
當前提交
c9257ab4bf
沒有連結到貢獻者的電子郵件帳戶。
共有 2 個檔案被更改,包括 13 行新增5 行删除
  1. 12
    2
      api/services/workspace_service.py
  2. 1
    3
      web/app/components/custom/custom-web-app-brand/index.tsx

+ 12
- 2
api/services/workspace_service.py 查看文件

@@ -1,3 +1,5 @@

from flask import current_app
from flask_login import current_user

from extensions.ext_database import db
@@ -31,7 +33,15 @@ class WorkspaceService:

can_replace_logo = FeatureService.get_features(tenant_info['id']).can_replace_logo

if can_replace_logo and TenantService.has_roles(tenant, [TenantAccountJoinRole.OWNER, TenantAccountJoinRole.ADMIN]):
tenant_info['custom_config'] = tenant.custom_config_dict
if can_replace_logo and TenantService.has_roles(tenant,
[TenantAccountJoinRole.OWNER, TenantAccountJoinRole.ADMIN]):
base_url = current_app.config.get('FILES_URL')
replace_webapp_logo = f'{base_url}/files/workspaces/{tenant.id}/webapp-logo' if tenant.custom_config_dict.get('replace_webapp_logo') else None
remove_webapp_brand = tenant.custom_config_dict.get('remove_webapp_brand', False)

tenant_info['custom_config'] = {
'remove_webapp_brand': remove_webapp_brand,
'replace_webapp_logo': replace_webapp_logo,
}

return tenant_info

+ 1
- 3
web/app/components/custom/custom-web-app-brand/index.tsx 查看文件

@@ -16,8 +16,6 @@ import {
updateCurrentWorkspace,
} from '@/service/common'
import { useAppContext } from '@/context/app-context'
import { API_PREFIX } from '@/config'
import { getPurifyHref } from '@/utils'

const ALLOW_FILE_EXTENSIONS = ['svg', 'png']

@@ -123,7 +121,7 @@ const CustomWebAppBrand = () => {
POWERED BY
{
webappLogo
? <img key={webappLogo} src={`${getPurifyHref(API_PREFIX.slice(0, -12))}/files/workspaces/${currentWorkspace.id}/webapp-logo`} alt='logo' className='ml-2 block w-auto h-5' />
? <img key={webappLogo} src={webappLogo} alt='logo' className='ml-2 block w-auto h-5' />
: <LogoSite className='ml-2 !h-5' />
}
</div>

Loading…
取消
儲存