From 26b53c79df30bcc3d2c4bf5782fe65b2cf1b0899 Mon Sep 17 00:00:00 2001 From: Carlosokumu Date: Mon, 20 Jan 2025 12:11:17 +0300 Subject: [PATCH] allow period for the alias --- identity/alias.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/identity/alias.go b/identity/alias.go index 195bcd5..f14774b 100644 --- a/identity/alias.go +++ b/identity/alias.go @@ -5,7 +5,7 @@ import ( ) const ( - aliasRegex = `^[a-zA-Z0-9]+$` + aliasRegex = `^[a-zA-Z0-9.]+$` ) // IsValidAlias checks if the alias is a valid alias format