增加回调log
This commit is contained in:
@@ -29,8 +29,6 @@ class SafeController extends AbstractController
|
||||
/**
|
||||
* 获取im签名数据
|
||||
* @return ResponseInterface
|
||||
* @throws ContainerExceptionInterface
|
||||
* @throws NotFoundExceptionInterface
|
||||
*/
|
||||
public function getImSign(): ResponseInterface
|
||||
{
|
||||
@@ -38,4 +36,15 @@ class SafeController extends AbstractController
|
||||
$data = $SafeService->getImSign();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取音视频签名数据
|
||||
* @return ResponseInterface
|
||||
*/
|
||||
public function getVideoSign(): ResponseInterface
|
||||
{
|
||||
$SafeService = new SafeService();
|
||||
$data = $SafeService->getVideoSign();
|
||||
return $this->response->json($data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user