新增通过链接邀请组织成员

This commit is contained in:
545522390@qq.com 2019-01-20 07:40:00 +08:00
parent 57f383a413
commit 6c6016f9f5

View File

@ -100,6 +100,27 @@ class ProjectMember extends BasicApi
$this->success('', array_values($tempList));//数组下标重置
}
/**
* 邀请成员
*/
public function _joinProject()
{
$inviteCode = Request::param('inviteCode');
$project = $this->model->where(['invite_code' => $inviteCode])->find();
if (!$project) {
$this->error('该项目已失效');
}
if (nowTime() >= $project['invite_over_time']) {
$this->error('该链接已失效');
}
try {
$this->model->inviteMember($data['memberCode'], $data['projectCode']);
} catch (\Exception $e) {
$this->error($e->getMessage(), $e->getCode());;
}
$this->success('');
}
/**
* 邀请成员
*/