diff --git a/.gitignore b/.gitignore index b71b1ea3..e2f7df40 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,4 @@ Homestead.json Homestead.yaml Thumbs.db +storage/credentials/ diff --git a/app/Services/MeetingLogService.php b/app/Services/MeetingLogService.php index 3f934f2f..5459c252 100644 --- a/app/Services/MeetingLogService.php +++ b/app/Services/MeetingLogService.php @@ -60,7 +60,7 @@ public function getById(int $id): ?MeetingLog public function create(array $data): MeetingLog { return MeetingLog::create([ - 'tenant_id' => currentTenantId(), + 'tenant_id' => session('selected_tenant_id'), 'user_id' => Auth::id(), 'title' => $data['title'] ?? '무제 회의록', 'status' => MeetingLog::STATUS_PENDING,