This commit is contained in:
root 2019-11-23 01:44:02 +08:00
parent f74c25c44f
commit 715e0175cf

View File

@ -20,13 +20,13 @@ class TutorialController extends Controller
if ($user->expired_at < time()) { if ($user->expired_at < time()) {
return response([ return response([
'data' => false 'data' => false
]) ]);
} }
return response([ return response([
'data' => [ 'data' => [
'apple_id' => config('v2board.apple_id'), 'apple_id' => config('v2board.apple_id'),
'apple_id_password' => config('v2board.apple_id_password') 'apple_id_password' => config('v2board.apple_id_password')
] ]
]) ]);
} }
} }