|
...
|
...
|
@@ -15,7 +15,7 @@ use App\Models\AyrShare\AyrShare as AyrShareModel; |
|
|
|
class AyrShareController extends BaseController
|
|
|
|
{
|
|
|
|
//生成名称前缀
|
|
|
|
const TITLE = 'global_so_';
|
|
|
|
const TITLE = 'globalso';
|
|
|
|
/**
|
|
|
|
* @name :(社交列表)lists
|
|
|
|
* @author :lyh
|
|
...
|
...
|
@@ -82,7 +82,7 @@ class AyrShareController extends BaseController |
|
|
|
public function create_account(AyrShareRequest $ayrShareRequest,AyrShareLogic $ayrShareLogic){
|
|
|
|
$ayrShareRequest->validated();
|
|
|
|
$param = [
|
|
|
|
'title'=>self::TITLE.$this->user['project_id'].':'.$this->param['name'],
|
|
|
|
'title'=>self::TITLE . ':' . $this->user['project_id'] . '-' . $this->param['name'],
|
|
|
|
];
|
|
|
|
//发送请求注册社交用户
|
|
|
|
$ayrShareHelper = new AyrShareHelper();
|
...
|
...
|
|