| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace client\controllers;
- use Yii;
- use yii\web\Controller;
- use common\components\util;
- class ChatController extends BaseController
- {
-
- //聊天首页,前端使用
- public function actionIndex()
- {
- return $this->renderPartial('index');
- }
-
- //绑定 shish 2019.12.28
- public function actionBind()
- {
- $post = Yii::$app->request->post();
- $clientId = isset($post['clientId']) ? $post['clientId'] : '';
- $userId = $this->userId;
- Gateway::bindUid($client_id, $userId);
- }
-
- }
|