This commit is contained in:
root
2019-11-23 15:05:02 +08:00
parent 7630e2384e
commit c436ac1e29
5 changed files with 10 additions and 6 deletions

View File

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