CSVインポートのチェックインはお惣菜コーナーに表示しない

This commit is contained in:
shibafu
2020-05-21 23:58:58 +09:00
parent 8681c328d0
commit 023446e0a8
3 changed files with 8 additions and 0 deletions

View File

@@ -70,6 +70,7 @@ SQL
->select('ejaculations.*')
->with('user', 'tags')
->withLikes()
->onlyWebCheckin()
->take(21)
->get();

View File

@@ -17,6 +17,7 @@ class TimelineController extends Controller
->select('ejaculations.*')
->with('user', 'tags')
->withLikes()
->onlyWebCheckin()
->paginate(21);
return view('timeline.public')->with(compact('ejaculations'));