Merge branch 'main' into feat/batch-create-users
This commit is contained in:
commit
d140a1a6cb
2 changed files with 11 additions and 8 deletions
|
@ -165,13 +165,16 @@ def show_user(email):
|
||||||
:param email: Email address of the user to show
|
:param email: Email address of the user to show
|
||||||
"""
|
"""
|
||||||
user = KratosUser.find_by_email(KRATOS_ADMIN, email)
|
user = KratosUser.find_by_email(KRATOS_ADMIN, email)
|
||||||
print(user)
|
if user is not None:
|
||||||
print("")
|
print(user)
|
||||||
print(f"UUID: {user.uuid}")
|
print("")
|
||||||
print(f"Username: {user.username}")
|
print(f"UUID: {user.uuid}")
|
||||||
print(f"Updated: {user.updated_at}")
|
print(f"Username: {user.username}")
|
||||||
print(f"Created: {user.created_at}")
|
print(f"Updated: {user.updated_at}")
|
||||||
print(f"State: {user.state}")
|
print(f"Created: {user.created_at}")
|
||||||
|
print(f"State: {user.state}")
|
||||||
|
else:
|
||||||
|
print(f"User with email address '{email}' was not found")
|
||||||
|
|
||||||
|
|
||||||
@user_cli.command("update")
|
@user_cli.command("update")
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
version: '3'
|
version: '3'
|
||||||
services:
|
services:
|
||||||
stackspin_proxy:
|
stackspin_proxy:
|
||||||
image: nginx:1.23.0
|
image: nginx:1.23.1
|
||||||
ports:
|
ports:
|
||||||
- "8081:8081"
|
- "8081:8081"
|
||||||
volumes:
|
volumes:
|
||||||
|
|
Loading…
Reference in a new issue