From 41f23e4c7cb5c3ca66d7daef6a7221d0a76a94fb Mon Sep 17 00:00:00 2001 From: Mirko Da Corte Date: Fri, 2 Jun 2023 17:36:00 +0200 Subject: [PATCH] minor fixes --- src/EthernaSSO.Domain/Models/ApiKey.cs | 2 +- src/EthernaSSO/EthernaSSO.csproj | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/EthernaSSO.Domain/Models/ApiKey.cs b/src/EthernaSSO.Domain/Models/ApiKey.cs index 6e7cc7b..8dcc81d 100644 --- a/src/EthernaSSO.Domain/Models/ApiKey.cs +++ b/src/EthernaSSO.Domain/Models/ApiKey.cs @@ -67,7 +67,7 @@ public static string GetPrettyPrintedPlainKey(string plainKey, UserBase owner) if (owner is null) throw new ArgumentNullException(nameof(owner)); - return $"{owner.Id}:{plainKey}"; + return $"{owner.Id}.{plainKey}"; } public static string GetRandomPlainKey() diff --git a/src/EthernaSSO/EthernaSSO.csproj b/src/EthernaSSO/EthernaSSO.csproj index e4ab7a8..5ed8130 100644 --- a/src/EthernaSSO/EthernaSSO.csproj +++ b/src/EthernaSSO/EthernaSSO.csproj @@ -21,6 +21,7 @@ + all