群信息
This commit is contained in:
@@ -14,7 +14,6 @@
|
|||||||
|
|
||||||
use Webman\Route;
|
use Webman\Route;
|
||||||
|
|
||||||
|
|
||||||
// 聊天模块路由分组
|
// 聊天模块路由分组
|
||||||
Route::group('/api/chat', function () {
|
Route::group('/api/chat', function () {
|
||||||
$jwt_middleware = app\middleware\JwtAuthMiddleware::class;
|
$jwt_middleware = app\middleware\JwtAuthMiddleware::class;
|
||||||
@@ -27,7 +26,7 @@ Route::group('/api/chat', function () {
|
|||||||
|
|
||||||
// 群聊管理
|
// 群聊管理
|
||||||
Route::group('/group', function () {
|
Route::group('/group', function () {
|
||||||
Route::post('/info', app\chat\controller\GroupController::class . '@info'); // 群信息
|
Route::any('/info', app\chat\controller\GroupController::class . '@info'); // 群信息
|
||||||
Route::post('/create', app\chat\controller\GroupController::class . '@create'); // 创建群(商家)
|
Route::post('/create', app\chat\controller\GroupController::class . '@create'); // 创建群(商家)
|
||||||
Route::post('/join', app\chat\controller\GroupController::class . '@join'); // 加群
|
Route::post('/join', app\chat\controller\GroupController::class . '@join'); // 加群
|
||||||
Route::post('/getgrepurl', app\chat\controller\GroupController::class . '@getgrepurl'); // 群邀请参数
|
Route::post('/getgrepurl', app\chat\controller\GroupController::class . '@getgrepurl'); // 群邀请参数
|
||||||
|
|||||||
Reference in New Issue
Block a user