Skip to content

Commit

Permalink
fixed usernames ending in period
Browse files Browse the repository at this point in the history
  • Loading branch information
jontyms committed Aug 23, 2024
1 parent aa31fe3 commit fe0ff91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/util/approve.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(self):
pass

def provision_infra(member_id: uuid.UUID, user_data):
username = user_data.discord.username[:20]
username = user_data.discord.username[:20].rstrip(".")
password = HorsePass.gen()
admin = KeycloakAdmin(
server_url=Settings().keycloak.url,
Expand Down

0 comments on commit fe0ff91

Please sign in to comment.