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 af51403 commit 3e0f798Copy full SHA for 3e0f798
crmeb/app/services/system/config/SystemStorageServices.php
@@ -45,6 +45,7 @@ public function getList(array $where)
45
$where['access_key'] = $config['accessKey'];
46
$list = $this->dao->getList($where, ['*'], $page, $limit, 'add_time');
47
foreach ($list as &$item) {
48
+ $item['cname'] = str_replace('https://', '', $item['domain']);
49
$item['_add_time'] = date('Y-m-d H:i:s', $item['add_time']);
50
$item['_update_time'] = date('Y-m-d H:i:s', $item['update_time']);
51
$service = UploadService::init($item['type']);
0 commit comments