fix getting identifier during zoning

This commit is contained in:
rootdarkarchon
2023-10-30 02:08:29 +01:00
parent 6bc9eaf96e
commit 2fbee855ae
2 changed files with 58 additions and 12 deletions

View File

@@ -1,3 +1,9 @@
namespace MareSynchronos.WebAPI.SignalR;
public record JwtIdentifier(string ApiUrl, string SecretKey);
public record JwtIdentifier(string ApiUrl, string CharaHash, string SecretKey)
{
public override string ToString()
{
return "{JwtIdentifier; Url: " + ApiUrl + ", Chara: " + CharaHash + ", HasSecretKey: " + !string.IsNullOrEmpty(SecretKey) + "}";
}
}