Skip to content

Commit

Permalink
checkin
Browse files Browse the repository at this point in the history
  • Loading branch information
jctanner committed Oct 4, 2023
1 parent 0665d27 commit e24de07
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dev/scripts.commnunity/fix_social_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from galaxy_ng.app.utils import rbac
from galaxy_ng.app.utils.galaxy import generate_unverified_email
from galaxy_ng.app.api.v1.models import LegacyNamespace


User = get_user_model()
Expand Down Expand Up @@ -65,3 +66,7 @@
# does the synced user have content?
namespaces = rbac.get_owned_v3_namespaces(synced_user)
print(f'\t{synced_user.id} owns {namespaces}')

# legacy namespaces ... ?
legacy_namespace = LegacyNamespace.objects.filter(name=github_login).first()
print(f't\legacy_namespace:{legacy_namespace}')

0 comments on commit e24de07

Please sign in to comment.