Skip to content

Commit

Permalink
fix: Minor account v2 related fixed to run in OSS (#785)
Browse files Browse the repository at this point in the history
Minor account v2 related fixed to run in OSS

Co-authored-by: ali <[email protected]>
Co-authored-by: vishnuszipstack <[email protected]>
  • Loading branch information
3 people authored Oct 11, 2024
1 parent 0171a11 commit c7d60e5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ celerybeat.pid

# Environments
test*.env
.env
*.env
!sample.env
.env.export
.venv*
env/
Expand Down Expand Up @@ -603,6 +604,7 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk


### Unstract ###

# Authentication Plugins
Expand Down Expand Up @@ -653,3 +655,11 @@ unstract/unstract-sdk/

# Backend requirements.txt
backend/requirements.txt

# Backend URLs
backend/backend/*_urls.py
!backend/backend/base_urls.py
!backend/backend/public_urls.py
# TODO: Remove after v2 migration is completed
backend/backend/*_urls_v2.py
!backend/backend/public_urls_v2.py
1 change: 0 additions & 1 deletion backend/account_v2/authentication_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ def user_organization(self) -> Organization:
name=DefaultOrg.ORGANIZATION_NAME,
display_name=DefaultOrg.ORGANIZATION_NAME,
organization_id=DefaultOrg.ORGANIZATION_NAME,
schema_name=DefaultOrg.ORGANIZATION_NAME,
)

def handle_invited_user_while_callback(
Expand Down

0 comments on commit c7d60e5

Please sign in to comment.