fix: 회의록 생성 시 tenant_id 세션 참조 수정

- currentTenantId() → session('selected_tenant_id') 변경
- Google Cloud 인증파일 .gitignore 추가
This commit is contained in:
2025-12-16 15:51:44 +09:00
parent 331eaebf86
commit a9abab3a32
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -22,3 +22,4 @@
Homestead.json
Homestead.yaml
Thumbs.db
storage/credentials/

View File

@@ -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,