|
...
|
...
|
@@ -4,6 +4,7 @@ namespace App\Http\Logic\Bside\Setting; |
|
|
|
|
|
|
|
use App\Helper\Common as CommonHelper;
|
|
|
|
use App\Http\Logic\Bside\BaseLogic;
|
|
|
|
use App\Models\UpdateNotify;
|
|
|
|
use App\Models\WebSetting\WebSetting;
|
|
|
|
|
|
|
|
class WebSettingLogic extends BaseLogic
|
|
...
|
...
|
@@ -55,4 +56,16 @@ class WebSettingLogic extends BaseLogic |
|
|
|
CommonHelper::del_user_cache($this->model->getTable(),$this->user['project_id']);
|
|
|
|
return $this->success();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @remark :通知c端
|
|
|
|
* @name :sendNotifyMessage
|
|
|
|
* @author :lyh
|
|
|
|
* @method :post
|
|
|
|
* @time :2023/8/1 9:36
|
|
|
|
*/
|
|
|
|
public function sendNotifyMessage(){
|
|
|
|
$urlStr = $this->user['domain'].'api/updateHtmlNotify?project_id='.$this->user['project_id'];
|
|
|
|
return http_get($urlStr);
|
|
|
|
}
|
|
|
|
} |
...
|
...
|
|