Skip to content

Commit

Permalink
fix created_at
Browse files Browse the repository at this point in the history
  • Loading branch information
lumburovskalina committed Nov 21, 2024
1 parent 9007a92 commit ba5d28f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fast_api/routes/organization.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def get_mapped_sorted_paginated_users(
"organization": user.organization_name,
"email": user.email,
"verified": user.verified,
"created_at": user.created_at.isoformat(),
"created_at": user.created_at.isoformat() if user.created_at else None,
"metadata_public": user.metadata_public,
"sso_provider": user.sso_provider,
}
Expand Down

0 comments on commit ba5d28f

Please sign in to comment.