mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
update
This commit is contained in:
parent
56d0305bf0
commit
b6df305cdb
@ -14,7 +14,7 @@ use Illuminate\Support\Facades\Redis;
|
||||
|
||||
class DashboardController extends Controller
|
||||
{
|
||||
public function index (Request $request) {
|
||||
public function override (Request $request) {
|
||||
return response([
|
||||
'data' => [
|
||||
'month_income' => Redis::get('month_income'),
|
||||
|
@ -44,7 +44,7 @@ Route::prefix('v1')
|
||||
Route::post('user/update', 'Admin\\UserController@update');
|
||||
Route::get ('user/id2UserInfo/{id}', 'Admin\\UserController@id2UserInfo');
|
||||
// Dashboard
|
||||
Route::get ('dashboard', 'Admin\\DashboardController@index');
|
||||
Route::get ('dashboard/override', 'Admin\\DashboardController@override');
|
||||
// Notice
|
||||
Route::get ('notice/fetch', 'Admin\\NoticeController@fetch');
|
||||
Route::post('notice/save', 'Admin\\NoticeController@save');
|
||||
|
Loading…
Reference in New Issue
Block a user