modified 添加接口登出

This commit is contained in:
zhaoxiang 2019-08-30 17:05:08 +08:00
parent 53934cbacd
commit af58f51603
2 changed files with 13 additions and 1 deletions

View File

@ -153,4 +153,12 @@ class Api extends Base {
]);
}
public function logout() {
$ApiAuth = $this->request->header('ApiAuth');
cache('WikiLogin:' . $ApiAuth, null);
cache('WikiLogin:' . $this->appInfo['id'], null);
return $this->buildSuccess([], '登出成功');
}
}

View File

@ -20,9 +20,13 @@ Route::group('wiki', function() {
'wiki/Api/groupList',
['method' => 'get']
],
'detail' => [
'detail' => [
'wiki/Api/detail',
['method' => 'get']
],
'logout' => [
'wiki/Api/logout',
['method' => 'get']
]
])->middleware(['WikiAuth']);