소스 검색

Fix buggy model

Guénaël Muller 7 년 전
부모
커밋
962981aa9c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      backend/tracim_backend/models/context_models.py

+ 1 - 1
backend/tracim_backend/models/context_models.py 파일 보기

169
     """
169
     """
170
     def __init__(self, workspace_id: int, user_id: int):
170
     def __init__(self, workspace_id: int, user_id: int):
171
         self.workspace_id = workspace_id
171
         self.workspace_id = workspace_id
172
-        self.user_id = workspace_id
172
+        self.user_id = user_id
173
 
173
 
174
 
174
 
175
 class UserWorkspaceAndContentPath(object):
175
 class UserWorkspaceAndContentPath(object):