Skip to content

Commit

Permalink
Updated import from /workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
johnwroge committed Sep 30, 2024
1 parent a0fc2e2 commit d78d110
Show file tree
Hide file tree
Showing 37 changed files with 2 additions and 2 deletions.
Binary file added api-v2/.coverage
Binary file not shown.
Binary file added api-v2/app/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file added api-v2/app/__pycache__/main.cpython-312.pyc
Binary file not shown.
Binary file added api-v2/app/__pycache__/seed.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file added api-v2/app/core/__pycache__/db.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added api-v2/homeuniteus.db
Binary file not shown.
Binary file added api-v2/tests/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion backend/app/modules/access/auth_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from app.modules.access.schemas import (
UserCreate, UserSignInRequest, UserSignInResponse, ForgotPasswordRequest, ConfirmForgotPasswordResponse,
ConfirmForgotPasswordRequest, RefreshTokenResponse, InviteRequest, InviteResponse, UserRoleEnum, ConfirmInviteRequest, NewPasswordRequest)
from app.modules.access.models import ( UnmatchedGuestCase )
from app.modules.workflow.models import ( UnmatchedGuestCase )

from app.modules.access.crud import create_user, delete_user, get_user
from app.modules.deps import (SettingsDep, DbSessionDep, CognitoIdpDep,
Expand Down
2 changes: 1 addition & 1 deletion backend/app/modules/access/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ class Role(Base):
id = Column(Integer, primary_key=True, index=True)
type = Column(String, nullable=False, unique=True)

users = relationship("User", back_populates="role")
users = relationship("User", back_populates="role")

0 comments on commit d78d110

Please sign in to comment.