From 651c1a7acf4a141408e7fde670c8f03e2228414b Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Fri, 7 Jun 2019 15:07:49 -0700 Subject: truncated oidc username creation --- rust/src/endpoint_handlers.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'rust/src/endpoint_handlers.rs') diff --git a/rust/src/endpoint_handlers.rs b/rust/src/endpoint_handlers.rs index 4253af45..59bc0519 100644 --- a/rust/src/endpoint_handlers.rs +++ b/rust/src/endpoint_handlers.rs @@ -596,7 +596,8 @@ impl Server { let (editor_row, created): (EditorRow, bool) = match existing.first() { Some((editor, _)) => (editor.clone(), false), None => { - let username = format!("{}-{}", params.preferred_username, params.provider); + let username = format!("{}-{}", params.preferred_username, params.provider) + .truncate(24); let editor = Editor { editor_id: None, username: username, -- cgit v1.2.3